[cfe-commits] r71793 - /cfe/trunk/test/SemaCXX/virtual-override.cpp
Anders Carlsson
andersca at mac.com
Thu May 14 14:20:35 PDT 2009
Author: andersca
Date: Thu May 14 16:20:16 2009
New Revision: 71793
URL: http://llvm.org/viewvc/llvm-project?rev=71793&view=rev
Log:
Fix the same speling error in the test case (Duh).
Modified:
cfe/trunk/test/SemaCXX/virtual-override.cpp
Modified: cfe/trunk/test/SemaCXX/virtual-override.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/SemaCXX/virtual-override.cpp?rev=71793&r1=71792&r2=71793&view=diff
==============================================================================
--- cfe/trunk/test/SemaCXX/virtual-override.cpp (original)
+++ cfe/trunk/test/SemaCXX/virtual-override.cpp Thu May 14 16:20:16 2009
@@ -22,7 +22,7 @@
};
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 *')}}
};
}
More information about the cfe-commits
mailing list