aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Norum <carl.norum@apple.com>2011-03-07 22:19:06 +0000
committerCarl Norum <carl.norum@apple.com>2011-03-07 22:19:06 +0000
commitd52e8b821a1a1cc58eec2f8446488566436eacc8 (patch)
treeff429808c8f38d72db82ed808aae935db6ff52e2
parent6e40035988965340555c942d6e7afb6c7527beb1 (diff)
Change diagnostic message from "Extension" to "ExtWarn" to find more problems with missing semicolons.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@127177 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/Basic/DiagnosticParseKinds.td2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Basic/DiagnosticParseKinds.td b/include/clang/Basic/DiagnosticParseKinds.td
index acf38e4f0f..f36d74645c 100644
--- a/include/clang/Basic/DiagnosticParseKinds.td
+++ b/include/clang/Basic/DiagnosticParseKinds.td
@@ -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">;