[cfe-commits] r142759 - /cfe/trunk/include/clang/Basic/DiagnosticParseKinds.td

Peter Collingbourne peter at pcc.me.uk
Sun Oct 23 13:07:42 PDT 2011


Author: pcc
Date: Sun Oct 23 15:07:42 2011
New Revision: 142759

URL: http://llvm.org/viewvc/llvm-project?rev=142759&view=rev
Log:
Fix typo (C++1 -> C++11).

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

Modified: cfe/trunk/include/clang/Basic/DiagnosticParseKinds.td
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/DiagnosticParseKinds.td?rev=142759&r1=142758&r2=142759&view=diff
==============================================================================
--- cfe/trunk/include/clang/Basic/DiagnosticParseKinds.td (original)
+++ cfe/trunk/include/clang/Basic/DiagnosticParseKinds.td Sun Oct 23 15:07:42 2011
@@ -425,7 +425,7 @@
 def err_cxx0x_attribute_forbids_arguments : Error<
   "C++11 attribute '%0' cannot have an argument list">;
 def err_cxx0x_attribute_requires_arguments : Error<
-  "C++1 attribute '%0' must have an argument list">;
+  "C++11 attribute '%0' must have an argument list">;
 def err_attributes_not_allowed : Error<"an attribute list cannot appear here">;
 
 /// C++ Templates





More information about the cfe-commits mailing list