Tweak diagnostic wording; patch by Sean Hunt.

llvm-svn: 77955
This commit is contained in:
Eli Friedman 2009-08-03 05:14:16 +00:00
parent 75bc528442
commit 5032139548
1 changed files with 1 additions and 1 deletions
clang/include/clang/Basic

View File

@ -1110,7 +1110,7 @@ def err_bitfield_has_negative_width : Error<
"bit-field %0 has negative width (%1)">;
def err_anon_bitfield_has_negative_width : Error<
"anonymous bit-field has negative width (%0)">;
def err_bitfield_has_zero_width : Error<"bit-field %0 has zero width">;
def err_bitfield_has_zero_width : Error<"named bit-field %0 has zero width">;
def err_bitfield_width_exceeds_type_size : Error<
"size of bit-field %0 exceeds size of its type (%1 bits)">;
def err_anon_bitfield_width_exceeds_type_size : Error<