1
0
mirror of https://github.com/mstorsjo/fdk-aac.git synced 2025-02-02 17:06:54 +01:00

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

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