From: Richard Trieu Date: Fri, 31 Aug 2012 22:03:03 +0000 (+0000) Subject: Update a warning to point to the DiagGroup created in DiagnosticGroups.td X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1999bd61da97b230da0b4a7b744e12bb51fb995e;p=clang Update a warning to point to the DiagGroup created in DiagnosticGroups.td instead of referring to the flag name. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@163027 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Basic/DiagnosticSemaKinds.td b/include/clang/Basic/DiagnosticSemaKinds.td index ead6159e5b..df3586307b 100644 --- a/include/clang/Basic/DiagnosticSemaKinds.td +++ b/include/clang/Basic/DiagnosticSemaKinds.td @@ -3384,7 +3384,7 @@ def warn_anon_bitfield_width_exceeds_type_size : Warning< def warn_missing_braces : Warning< "suggest braces around initialization of subobject">, - InGroup>, DefaultIgnore; + InGroup, DefaultIgnore; def err_missing_braces : Error< "cannot omit braces around initialization of subobject when using direct " "list-initialization">;