[cfe-commits] r163113 - /cfe/trunk/include/clang/Basic/DiagnosticLexKinds.td

Joao Matos ripzonetriton at gmail.com
Mon Sep 3 03:41:46 PDT 2012


Author: triton
Date: Mon Sep  3 05:41:45 2012
New Revision: 163113

URL: http://llvm.org/viewvc/llvm-project?rev=163113&view=rev
Log:
Improved the warning for the #@ Microsoft charizing operator. The existing one misspelled the token as "@#" and didn't capitalize Microsoft.

Modified:
    cfe/trunk/include/clang/Basic/DiagnosticLexKinds.td

Modified: cfe/trunk/include/clang/Basic/DiagnosticLexKinds.td
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/DiagnosticLexKinds.td?rev=163113&r1=163112&r2=163113&view=diff
==============================================================================
--- cfe/trunk/include/clang/Basic/DiagnosticLexKinds.td (original)
+++ cfe/trunk/include/clang/Basic/DiagnosticLexKinds.td Mon Sep  3 05:41:45 2012
@@ -55,7 +55,7 @@
 
 def ext_dollar_in_identifier : Extension<"'$' in identifier">,
   InGroup<DiagGroup<"dollar-in-identifier-extension">>;
-def ext_charize_microsoft : Extension<"@# is a microsoft extension">,
+def ext_charize_microsoft : Extension<"charizing operator #@ is a Microsoft extension">,
   InGroup<Microsoft>;
 
 def ext_token_used : Extension<"extension used">,





More information about the cfe-commits mailing list