diff options
Diffstat (limited to 'Modules/_sre.c')
-rw-r--r-- | Modules/_sre.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Modules/_sre.c b/Modules/_sre.c index 84e2f933db..03a138ee01 100644 --- a/Modules/_sre.c +++ b/Modules/_sre.c @@ -66,10 +66,8 @@ static const char copyright[] = #pragma warning(disable: 4710) /* who cares if functions are not inlined ;-) */ /* fastest possible local call under MSVC */ #define LOCAL(type) static __inline type __fastcall -#elif defined(USE_INLINE) -#define LOCAL(type) static inline type #else -#define LOCAL(type) static type +#define LOCAL(type) static inline type #endif /* error codes */ |