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

This commit is contained in:
Guillaume Smaha 2016-05-17 15:39:10 +02:00
parent 50a98d1fd2
commit 112fe2c68d
1 changed files with 1 additions and 1 deletions

View File

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