From fa648bdc44ee33f40d8097cb24e2f036817c2dd7 Mon Sep 17 00:00:00 2001 From: Christopher Snowhill Date: Tue, 22 May 2018 01:04:58 -0700 Subject: [PATCH] Fix linkage errors due to inline missing 'static'. --- Frameworks/HighlyQuixotic/HighlyQuixotic/Core/qsound_ctr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Frameworks/HighlyQuixotic/HighlyQuixotic/Core/qsound_ctr.c b/Frameworks/HighlyQuixotic/HighlyQuixotic/Core/qsound_ctr.c index 7b18239d3..f107696c4 100644 --- a/Frameworks/HighlyQuixotic/HighlyQuixotic/Core/qsound_ctr.c +++ b/Frameworks/HighlyQuixotic/HighlyQuixotic/Core/qsound_ctr.c @@ -17,9 +17,9 @@ #include "qsound_ctr.h" #ifdef _MSC_VER -#define INLINE __inline +#define INLINE static __inline #else -#define INLINE inline +#define INLINE static inline #endif #define CLAMP(x, low, high) (((x) > (high)) ? (high) : (((x) < (low)) ? (low) : (x)))