r175502 - Add the missing 'static' keyword to the test
Timur Iskhodzhanov
timurrrr at google.com
Tue Feb 19 02:50:46 PST 2013
Author: timurrrr
Date: Tue Feb 19 04:50:44 2013
New Revision: 175502
URL: http://llvm.org/viewvc/llvm-project?rev=175502&view=rev
Log:
Add the missing 'static' keyword to the test
Modified:
cfe/trunk/test/CodeGenCXX/microsoft-abi-default-cc.cpp
Modified: cfe/trunk/test/CodeGenCXX/microsoft-abi-default-cc.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/microsoft-abi-default-cc.cpp?rev=175502&r1=175501&r2=175502&view=diff
==============================================================================
--- cfe/trunk/test/CodeGenCXX/microsoft-abi-default-cc.cpp (original)
+++ cfe/trunk/test/CodeGenCXX/microsoft-abi-default-cc.cpp Tue Feb 19 04:50:44 2013
@@ -28,8 +28,8 @@ public:
void baz();
void METHOD_CC qux();
- void static_baz();
- void __cdecl static_qux();
+ static void static_baz();
+ static void __cdecl static_qux();
};
void METHOD_CC A::baz() {}
More information about the cfe-commits
mailing list