[cfe-commits] r153012 - /cfe/trunk/include/clang/Basic/DiagnosticLexKinds.td

Benjamin Kramer benny.kra at googlemail.com
Sun Mar 18 06:01:32 PDT 2012


Author: d0k
Date: Sun Mar 18 08:01:31 2012
New Revision: 153012

URL: http://llvm.org/viewvc/llvm-project?rev=153012&view=rev
Log:
An error can't be in a warning group.

Modified:
    cfe/trunk/include/clang/Basic/DiagnosticLexKinds.td

Modified: cfe/trunk/include/clang/Basic/DiagnosticLexKinds.td
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/DiagnosticLexKinds.td?rev=153012&r1=153011&r2=153012&view=diff
==============================================================================
--- cfe/trunk/include/clang/Basic/DiagnosticLexKinds.td (original)
+++ cfe/trunk/include/clang/Basic/DiagnosticLexKinds.td Sun Mar 18 08:01:31 2012
@@ -229,8 +229,7 @@
 def ext_pp_import_directive : Extension<"#import is a language extension">,
   InGroup<DiagGroup<"import-preprocessor-directive-pedantic">>;
 def err_pp_import_directive_ms : Error<
-  "#import of type library is an unsupported Microsoft feature">,
-  InGroup<Microsoft>;
+  "#import of type library is an unsupported Microsoft feature">;
 
 def ext_pp_ident_directive : Extension<"#ident is a language extension">;
 def ext_pp_include_next_directive : Extension<





More information about the cfe-commits mailing list