]> granicus.if.org Git - clang/commitdiff
Fix the same speling error in the test case (Duh).
authorAnders Carlsson <andersca@mac.com>
Thu, 14 May 2009 21:20:16 +0000 (21:20 +0000)
committerAnders Carlsson <andersca@mac.com>
Thu, 14 May 2009 21:20:16 +0000 (21:20 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@71793 91177308-0d34-0410-b5e6-96231b3b80d8

test/SemaCXX/virtual-override.cpp

index 1a917fee03191f2b9dd247bdd352c09c37e172b8..fc5d77949599c98fb170fb7a13ad4ad4de03139c 100644 (file)
@@ -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 *')}}
 };
 
 }