Commit 112fe2c6 authored by Guillaume Smaha's avatar Guillaume Smaha

Fix issue with gcc 3.4.3 which doesn't support always_inline without inline

parent 50a98d1f
...@@ -293,7 +293,7 @@ amm-info@iis.fraunhofer.de ...@@ -293,7 +293,7 @@ amm-info@iis.fraunhofer.de
#else #else
#ifndef FORCEINLINE #ifndef FORCEINLINE
#if defined(__GNUC__) /* cppp replaced: elif */ #if defined(__GNUC__) /* cppp replaced: elif */
#define FORCEINLINE __attribute((always_inline)) #define FORCEINLINE inline __attribute((always_inline))
#else #else
#define FORCEINLINE #define FORCEINLINE
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment