diff options
author | Anders Carlsson <andersca@mac.com> | 2009-05-14 21:20:16 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2009-05-14 21:20:16 +0000 |
commit | b5133c279f86e04f71c9dd5d581ecfedf1f5e7eb (patch) | |
tree | 100f3ac9dc3092faef35c9c48e5bb5740a7d9b4e | |
parent | 1eee0e753fb390b04848846e837714ec774b7bfd (diff) |
Fix the same speling error in the test case (Duh).
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@71793 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/SemaCXX/virtual-override.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/SemaCXX/virtual-override.cpp b/test/SemaCXX/virtual-override.cpp index 1a917fee03..fc5d779495 100644 --- a/test/SemaCXX/virtual-override.cpp +++ b/test/SemaCXX/virtual-override.cpp @@ -22,7 +22,7 @@ class A { }; class B : A { - virtual b* f(); // expected-error{{return type of virtual function 'f' is not covariant with the return type of the function it overrrides ('struct T2::b *' is not derived from 'struct T2::a *')}} + virtual b* f(); // expected-error{{return type of virtual function 'f' is not covariant with the return type of the function it overrides ('struct T2::b *' is not derived from 'struct T2::a *')}} }; } |