diff options
author | Anders Carlsson <andersca@mac.com> | 2009-05-14 21:03:44 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2009-05-14 21:03:44 +0000 |
commit | 67a1eadcf7c20cd5534645468eca458902e31add (patch) | |
tree | 60448aa5788e09bad3491be1c3f093406339adc6 | |
parent | ffb0081d0c0509eb4884143381cb3e5a5f6947b4 (diff) |
Fix a speling error.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@71791 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 514f94798e..5fefa2d69f 100644 --- a/include/clang/Basic/DiagnosticSemaKinds.td +++ b/include/clang/Basic/DiagnosticSemaKinds.td @@ -317,7 +317,7 @@ def err_covariant_return_ambiguous_derived_to_base_conv : Error< "%0 to base class %1:%2)">; def err_covariant_return_not_derived : Error< "return type of virtual function %0 is not covariant with the return type of " - "the function it overrrides (%1 is not derived from %2)">; + "the function it overrides (%1 is not derived from %2)">; def err_covariant_return_type_different_qualifications : Error< "return type of virtual function %0 is not covariant with the return type of " "the function it overrides (%1 has different qualifiers than %2)">; |