From 8c29cfa09fa46387e90ecd74f4f5c447eab1c38f Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Thu, 27 Jan 2011 18:50:39 +0000 Subject: [PATCH] Clean up the diagnostic text for delegating constructors git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@124393 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/Basic/DiagnosticSemaKinds.td | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/clang/Basic/DiagnosticSemaKinds.td b/include/clang/Basic/DiagnosticSemaKinds.td index bd9e441a84..cb87f0d5e6 100644 --- a/include/clang/Basic/DiagnosticSemaKinds.td +++ b/include/clang/Basic/DiagnosticSemaKinds.td @@ -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< -- 2.40.0