]> granicus.if.org Git - clang/commitdiff
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)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@175502 91177308-0d34-0410-b5e6-96231b3b80d8

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

index d0d25ce5efb1b32121f36995c02b409af2df9aca..7f2fc0a89d7a480a81de8496b006926598676be3 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() {}