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
#else
#ifndef FORCEINLINE
#if defined(__GNUC__) /* cppp replaced: elif */
#define FORCEINLINE __attribute((always_inline))
#define FORCEINLINE inline __attribute((always_inline))
#else
#define FORCEINLINE
#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