diff options
author | Chris Lattner <sabre@nondot.org> | 2009-04-16 03:27:53 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-04-16 03:27:53 +0000 |
commit | 6ac9ffc9f0c07671211484385ab00e4337f27895 (patch) | |
tree | 39e282ab2618fe58e09ef3f1e0df7ecefc5a25b1 | |
parent | 63f5c2646e75041277657aa1392a5bdd643367a7 (diff) |
implement -Wno-#warnings etc.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69259 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Basic/DiagnosticLexKinds.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Basic/DiagnosticLexKinds.td b/include/clang/Basic/DiagnosticLexKinds.td index 0ae3b3f8b3..32ce9e383e 100644 --- a/include/clang/Basic/DiagnosticLexKinds.td +++ b/include/clang/Basic/DiagnosticLexKinds.td @@ -84,7 +84,7 @@ def warn_hex_escape_too_large : ExtWarn<"hex escape sequence out of range">; //===----------------------------------------------------------------------===// // Preprocessor Diagnostics //===----------------------------------------------------------------------===// -def pp_hash_warning : Warning<"#warning%0">; +def pp_hash_warning : Warning<"#warning%0">, InGroup<DiagGroup<"#warnings">>; def pp_include_next_in_primary : Warning< "#include_next in primary source file">; def pp_include_macros_out_of_predefines : Error< |