diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-05-12 20:24:52 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-05-12 20:24:52 +0000 |
commit | 2df0716635965580ac3f63a1799332e6c02d86d9 (patch) | |
tree | 15c9a85b2efa9ed08bb0e5e8047b3966547908ab | |
parent | 43ac9654d088a0e27599e5fa3df532d6de142f5e (diff) |
Diagnostic wording fix, from Anders Johnsen
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@71584 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Basic/DiagnosticSemaKinds.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Basic/DiagnosticSemaKinds.td b/include/clang/Basic/DiagnosticSemaKinds.td index aaaad13b12..4c7a11668f 100644 --- a/include/clang/Basic/DiagnosticSemaKinds.td +++ b/include/clang/Basic/DiagnosticSemaKinds.td @@ -280,7 +280,7 @@ def err_mutable_nonmember : Error< def err_virtual_non_function : Error< "'virtual' can only appear on non-static member functions">; def err_explicit_non_function : Error< - "'virtual' can only appear on non-static member functions">; + "'explicit' can only appear on non-static member functions">; def err_virtual_out_of_class : Error< "'virtual' can only be specified inside the class definition">; def err_static_not_bitfield : Error<"static member %0 cannot be a bit-field">; |