diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2013-01-10 20:47:57 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2013-01-10 20:47:57 +0000 |
commit | c5362d9dc013f02a84f5e14c54c9d5fd5c78a426 (patch) | |
tree | fadd868f8cab74d4848c958633462fa512082fa2 | |
parent | f6e65cc9a654d54411c43fd014e911a407ad4075 (diff) |
In my last patch use InGroup<Switch> (per Dmitri's comment).
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@172103 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Basic/DiagnosticSemaKinds.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Basic/DiagnosticSemaKinds.td b/include/clang/Basic/DiagnosticSemaKinds.td index a67764a573..6712f20cd3 100644 --- a/include/clang/Basic/DiagnosticSemaKinds.td +++ b/include/clang/Basic/DiagnosticSemaKinds.td @@ -5714,7 +5714,7 @@ def warn_case_value_overflow : Warning< InGroup<Switch>; def warn_case_constant_overflow : Warning< "overflow in case constant expression results in new value (%0)">, - InGroup<DiagGroup<"switch">>; + InGroup<Switch>; def err_duplicate_case : Error<"duplicate case value '%0'">; def err_duplicate_case_differing_expr : Error< "duplicate case value: '%0' and '%1' both equal '%2'">; |