forked from OSchip/llvm-project
Update a warning to point to the DiagGroup created in DiagnosticGroups.td
instead of referring to the flag name. llvm-svn: 163027
This commit is contained in:
parent
3c3d57bc16
commit
82cc8097de
|
@ -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<DiagGroup<"missing-braces">>, DefaultIgnore;
|
||||
InGroup<MissingBraces>, DefaultIgnore;
|
||||
def err_missing_braces : Error<
|
||||
"cannot omit braces around initialization of subobject when using direct "
|
||||
"list-initialization">;
|
||||
|
|
Loading…
Reference in New Issue