[cfe-commits] r124393 - /cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td

Douglas Gregor dgregor at apple.com
Thu Jan 27 10:50:39 PST 2011


Author: dgregor
Date: Thu Jan 27 12:50:39 2011
New Revision: 124393

URL: http://llvm.org/viewvc/llvm-project?rev=124393&view=rev
Log:
Clean up the diagnostic text for delegating constructors

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

Modified: cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td?rev=124393&r1=124392&r2=124393&view=diff
==============================================================================
--- cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td (original)
+++ cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td Thu Jan 27 12:50:39 2011
@@ -923,9 +923,9 @@
 
 // C++0x delegating constructors
 def err_delegation_0x_only : Error<
-  "Delegating constructors are permitted only in C++0x.">;
+  "delegating constructors are permitted only in C++0x">;
 def err_delegation_unimplemented : Error<
-  "Delegating constructors are not fully implemented.">;
+  "delegating constructors are not fully implemented">;
   
 // Objective-C++
 def err_objc_decls_may_only_appear_in_global_scope : Error<





More information about the cfe-commits mailing list