aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2011-01-27 18:50:39 +0000
committerDouglas Gregor <dgregor@apple.com>2011-01-27 18:50:39 +0000
commit8c29cfa09fa46387e90ecd74f4f5c447eab1c38f (patch)
tree7b64340783caba6aeedf685d3bcf7767b29ae4b2
parent11fe175346242744bd9cb4040f3c84e243934134 (diff)
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
-rw-r--r--include/clang/Basic/DiagnosticSemaKinds.td4
1 files 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<