Skip to content

Commit

Permalink
Invert inline and void to be compatible with gcc 3.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeSmaha authored and mstorsjo committed May 18, 2016
1 parent 20c46b5 commit 53bf9f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libFDK/include/fft.h
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ void ifft(int length, FIXP_DBL *pInput, INT *scalefactor);
*/

LNK_SECTION_CODE_L1
static void FORCEINLINE fft_4(FIXP_DBL *x)
static FORCEINLINE void fft_4(FIXP_DBL *x)
{
FIXP_DBL a00, a10, a20, a30, tmp0, tmp1;

Expand Down Expand Up @@ -149,7 +149,7 @@ static void FORCEINLINE fft_4(FIXP_DBL *x)
}

LNK_SECTION_CODE_L1
static void FORCEINLINE fft_8(FIXP_DBL *x)
static FORCEINLINE void fft_8(FIXP_DBL *x)
{
#define W_PiFOURTH STC(0x5a82799a)

Expand Down

0 comments on commit 53bf9f2

Please sign in to comment.