mirror of
https://github.com/mstorsjo/fdk-aac.git
synced 2025-06-05 22:39:13 +02:00
Fix issue with gcc 3.4.3 which doesn't support always_inline without inline
This commit is contained in:
@ -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
|
||||||
|
Reference in New Issue
Block a user