From: Timur Iskhodzhanov Date: Tue, 19 Feb 2013 10:50:44 +0000 (+0000) Subject: Add the missing 'static' keyword to the test X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=aad3fa661914ac90e64f7eafb72f848e9bd117cd;p=clang Add the missing 'static' keyword to the test git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@175502 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGenCXX/microsoft-abi-default-cc.cpp b/test/CodeGenCXX/microsoft-abi-default-cc.cpp index d0d25ce5ef..7f2fc0a89d 100644 --- a/test/CodeGenCXX/microsoft-abi-default-cc.cpp +++ b/test/CodeGenCXX/microsoft-abi-default-cc.cpp @@ -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() {}