Commit 1e8e0a4e authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

msvcrt/tests: Replace inline static with static inline.

parent 55355d2d
......@@ -126,7 +126,7 @@ static void* bAncientVersion;
/* 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 @@ inline static void* do_call_func1(void *func, void *_this)
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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment