]> granicus.if.org Git - clang/commitdiff
Clean up the diagnostic text for delegating constructors
authorDouglas Gregor <dgregor@apple.com>
Thu, 27 Jan 2011 18:50:39 +0000 (18:50 +0000)
committerDouglas Gregor <dgregor@apple.com>
Thu, 27 Jan 2011 18:50:39 +0000 (18:50 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@124393 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Basic/DiagnosticSemaKinds.td

index bd9e441a844c37303cd39b9c7594b4d59bc06b1d..cb87f0d5e6b61f65301439e6f6ec66e76a74ebe0 100644 (file)
@@ -923,9 +923,9 @@ def err_enum_redeclare_scoped_mismatch : Error<
 
 // 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<