diff options
author | Benoit Germain <benoit.germain@ubisoft.com> | 2024-03-19 15:54:14 +0100 |
---|---|---|
committer | Benoit Germain <benoit.germain@ubisoft.com> | 2024-03-19 15:57:52 +0100 |
commit | 278c362e4239bc65653e9d1309ff1f7e01f456ef (patch) | |
tree | c9080bdebc1e5e1f1c0e452f3fd8d28dc77c5847 /src | |
parent | bade6ae30109f88d4892624a01bb19e794c15c1b (diff) | |
download | lanes-278c362e4239bc65653e9d1309ff1f7e01f456ef.tar.gz lanes-278c362e4239bc65653e9d1309ff1f7e01f456ef.tar.bz2 lanes-278c362e4239bc65653e9d1309ff1f7e01f456ef.zip |
C++ migration: MSVC-specific "inline" is gone
Diffstat (limited to 'src')
-rw-r--r-- | src/macros_and_utils.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/macros_and_utils.h b/src/macros_and_utils.h index 726fe64..5377477 100644 --- a/src/macros_and_utils.h +++ b/src/macros_and_utils.h | |||
@@ -9,11 +9,6 @@ extern "C" { | |||
9 | } | 9 | } |
10 | #endif // __cplusplus | 10 | #endif // __cplusplus |
11 | 11 | ||
12 | // M$ compiler doesn't support 'inline' keyword in C files... | ||
13 | #if defined( _MSC_VER) | ||
14 | #define inline __inline | ||
15 | #endif | ||
16 | |||
17 | #define USE_DEBUG_SPEW() 0 | 12 | #define USE_DEBUG_SPEW() 0 |
18 | #if USE_DEBUG_SPEW() | 13 | #if USE_DEBUG_SPEW() |
19 | extern char const* debugspew_indent; | 14 | extern char const* debugspew_indent; |