From: Luca Barbato Date: Mon, 28 May 2018 14:11:17 +0000 (+0200) Subject: Unbreak the force inline directive for gcc X-Git-Tag: v1.8.0~640^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3dffc634c0544449f3754954706552b11a89ce07;p=libvpx Unbreak the force inline directive for gcc Change-Id: I97d26285ec146628cbafd3573ca812c630c6687d --- diff --git a/vpx/vpx_integer.h b/vpx/vpx_integer.h index 09bad9222..63417ce2c 100644 --- a/vpx/vpx_integer.h +++ b/vpx/vpx_integer.h @@ -18,7 +18,7 @@ #define VPX_FORCE_INLINE __forceinline #define VPX_INLINE __inline #else -#define VPX_FORCE_INLINE __inline__ __attribute__(always_inline) +#define VPX_FORCE_INLINE __inline__ __attribute__((always_inline)) // TODO(jbb): Allow a way to force inline off for older compilers. #define VPX_INLINE inline #endif