From: Joao Matos Date: Mon, 3 Sep 2012 10:41:45 +0000 (+0000) Subject: Improved the warning for the #@ Microsoft charizing operator. The existing one misspe... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9a134afc12d2f85e9574b8ba70a6d966eefb08d5;p=clang Improved the warning for the #@ Microsoft charizing operator. The existing one misspelled the token as "@#" and didn't capitalize Microsoft. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@163113 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Basic/DiagnosticLexKinds.td b/include/clang/Basic/DiagnosticLexKinds.td index cc958dbdfe..b080360fad 100644 --- a/include/clang/Basic/DiagnosticLexKinds.td +++ b/include/clang/Basic/DiagnosticLexKinds.td @@ -55,7 +55,7 @@ def warn_cxx98_compat_no_newline_eof : Warning< def ext_dollar_in_identifier : Extension<"'$' in identifier">, InGroup>; -def ext_charize_microsoft : Extension<"@# is a microsoft extension">, +def ext_charize_microsoft : Extension<"charizing operator #@ is a Microsoft extension">, InGroup; def ext_token_used : Extension<"extension used">,