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 | 169fd709998b073b513bf5168887b5668c319b1f (patch) | |
tree | 045008a4ff1f2186ac00e3efcb794e03a28e1212 | |
parent | 0a40ad93a9fb476ff4205bb29a075dc572c37e47 (diff) | |
download | bcm5719-llvm-169fd709998b073b513bf5168887b5668c319b1f.tar.gz bcm5719-llvm-169fd709998b073b513bf5168887b5668c319b1f.zip |
implement -Wno-#warnings etc.
llvm-svn: 69259
-rw-r--r-- | clang/include/clang/Basic/DiagnosticLexKinds.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/include/clang/Basic/DiagnosticLexKinds.td b/clang/include/clang/Basic/DiagnosticLexKinds.td index 0ae3b3f8b33..32ce9e383eb 100644 --- a/clang/include/clang/Basic/DiagnosticLexKinds.td +++ b/clang/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< |