shithub: libvpx

Download patch

ref: 3dffc634c0544449f3754954706552b11a89ce07
parent: d8c36c94807270631d375aa3eee72a87ff593958
author: Luca Barbato <lu_zero@gentoo.org>
date: Mon May 28 12:11:17 EDT 2018

Unbreak the force inline directive for gcc

Change-Id: I97d26285ec146628cbafd3573ca812c630c6687d

--- 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