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: http://review.tizen.org/git/?a=commitdiff_plain;h=2e9bd807e2f96de4816c5732a2a2f3a992ebb9c3;p=platform%2Fupstream%2Fllvm.git Add the missing 'static' keyword to the test llvm-svn: 175502 --- diff --git a/clang/test/CodeGenCXX/microsoft-abi-default-cc.cpp b/clang/test/CodeGenCXX/microsoft-abi-default-cc.cpp index d0d25ce..7f2fc0a 100644 --- a/clang/test/CodeGenCXX/microsoft-abi-default-cc.cpp +++ b/clang/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() {}