diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2012-03-18 13:01:31 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2012-03-18 13:01:31 +0000 |
commit | 359487b68633a65c3e87a2146e0706fa5ae27d19 (patch) | |
tree | 8316dd3a3ba91b58f09d1901073f1ce88c60b36d | |
parent | 393f98b5b7f7c950d2b0a7d84501b5dfd00ad780 (diff) |
An error can't be in a warning group.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@153012 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Basic/DiagnosticLexKinds.td | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/clang/Basic/DiagnosticLexKinds.td b/include/clang/Basic/DiagnosticLexKinds.td index c6d26a069f..26c0a20d2a 100644 --- a/include/clang/Basic/DiagnosticLexKinds.td +++ b/include/clang/Basic/DiagnosticLexKinds.td @@ -229,8 +229,7 @@ def warn_pp_convert_rhs_to_positive : Warning< 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< |