Add the missing 'static' keyword to the test
authorTimur Iskhodzhanov <timurrrr@google.com>
Tue, 19 Feb 2013 10:50:44 +0000 (10:50 +0000)
committerTimur Iskhodzhanov <timurrrr@google.com>
Tue, 19 Feb 2013 10:50:44 +0000 (10:50 +0000)
llvm-svn: 175502

clang/test/CodeGenCXX/microsoft-abi-default-cc.cpp

index d0d25ce..7f2fc0a 100644 (file)
@@ -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() {}