1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-24 08:28:04 +02:00

Merge pull request #110 from mojca/remove-extra-tokens-after-endif

comment out extra tokens at end of #endif directive to avoid compiler warnings [-Wextra-tokens]
This commit is contained in:
Paul Licameli 2016-02-26 09:45:34 -05:00
commit d1a6f073ff
2 changed files with 3 additions and 3 deletions

View File

@ -11,10 +11,10 @@ typedef unsigned int UWORD;
#ifdef DEBUG
#define INLINE
#else DEBUG
#else /* DEBUG */
/* #define INLINE inline */
#define INLINE
#endif DEBUG
#endif /* DEBUG */
/*
* FilterUp() - Applies a filter to a given sample when up-converting.

View File

@ -459,7 +459,7 @@ double step_to_hz(double);
#ifdef WIN32
double log2(double x);
#endif WIN32
#endif /* WIN32 */
/* macros for access to samples within a suspension */
/* NOTE: assume suspension structure is named "susp" */