forked from OSchip/llvm-project
Change diagnostic message from "Extension" to "ExtWarn" to find more problems with missing semicolons.
llvm-svn: 127177
This commit is contained in:
parent
897947434e
commit
a367d80763
|
@ -111,7 +111,7 @@ def err_expected_semi_declaration : Error<
|
|||
"expected ';' at end of declaration">;
|
||||
def err_expected_semi_decl_list : Error<
|
||||
"expected ';' at end of declaration list">;
|
||||
def ext_expected_semi_decl_list : Extension<
|
||||
def ext_expected_semi_decl_list : ExtWarn<
|
||||
"expected ';' at end of declaration list">;
|
||||
def err_expected_member_name_or_semi : Error<
|
||||
"expected member name or ';' after declaration specifiers">;
|
||||
|
|
Loading…
Reference in New Issue