msvcrt/tests: Replace inline static with static inline

Andrew Talbot Andrew.Talbot at talbotville.com
Thu Mar 22 13:22:51 CDT 2007


Changelog:
    msvcrt/tests: Replace inline static with static inline.

diff -urN a/dlls/msvcrt/tests/cpp.c b/dlls/msvcrt/tests/cpp.c
--- a/dlls/msvcrt/tests/cpp.c	2006-12-14 17:32:48.000000000 +0000
+++ b/dlls/msvcrt/tests/cpp.c	2007-03-22 18:00:30.000000000 +0000
@@ -126,7 +126,7 @@
 
 /* Emulate a __thiscall */
 #ifdef _MSC_VER
-inline static void* do_call_func1(void *func, void *_this)
+static inline void* do_call_func1(void *func, void *_this)
 {
   volatile void* retval = 0;
   __asm
@@ -140,7 +140,7 @@
   return (void*)retval;
 }
 
-inline static void* do_call_func2(void *func, void *_this, const void* arg)
+static inline void* do_call_func2(void *func, void *_this, const void* arg)
 {
   volatile void* retval = 0;
   __asm



More information about the wine-patches mailing list