diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2012-05-03 18:38:45 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2012-05-03 18:38:45 +0000 |
commit | 487eed6117a373e6df14b5375927fa89c1abe740 (patch) | |
tree | fe34d4f904c0a4d7a46a4b5022d672108ec9ac1f | |
parent | e0d3b4cd2b66f1cef26cacbed5820ab7c22ad5b3 (diff) |
Remove diagnostic groups and DefaultIgnore from notes.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@156087 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Basic/DiagnosticSemaKinds.td | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/include/clang/Basic/DiagnosticSemaKinds.td b/include/clang/Basic/DiagnosticSemaKinds.td index 4af3af1da8..f1bee6a676 100644 --- a/include/clang/Basic/DiagnosticSemaKinds.td +++ b/include/clang/Basic/DiagnosticSemaKinds.td @@ -5250,17 +5250,13 @@ def warn_unannotated_fallthrough : Warning< "unannotated fall-through between switch labels">, InGroup<ImplicitFallthrough>, DefaultIgnore; def note_insert_fallthrough_fixit : Note< - "insert '[[clang::fallthrough]];' to silence this warning">, - InGroup<ImplicitFallthrough>, DefaultIgnore; + "insert '[[clang::fallthrough]];' to silence this warning">; def note_insert_break_fixit : Note< - "insert 'break;' to avoid fall-through">, - InGroup<ImplicitFallthrough>, DefaultIgnore; + "insert 'break;' to avoid fall-through">; def err_fallthrough_attr_wrong_target : Error< "clang::fallthrough attribute is only allowed on empty statements">, InGroup<IgnoredAttributes>; -def note_fallthrough_insert_semi_fixit : Note< - "did you forget ';'?">, - InGroup<IgnoredAttributes>; +def note_fallthrough_insert_semi_fixit : Note<"did you forget ';'?">; def err_fallthrough_attr_outside_switch : Error< "fallthrough annotation is outside switch statement">, InGroup<IgnoredAttributes>; |