mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-25 17:08:07 +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:
commit
d1a6f073ff
@ -11,10 +11,10 @@ typedef unsigned int UWORD;
|
|||||||
|
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
#define INLINE
|
#define INLINE
|
||||||
#else DEBUG
|
#else /* DEBUG */
|
||||||
/* #define INLINE inline */
|
/* #define INLINE inline */
|
||||||
#define INLINE
|
#define INLINE
|
||||||
#endif DEBUG
|
#endif /* DEBUG */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* FilterUp() - Applies a filter to a given sample when up-converting.
|
* FilterUp() - Applies a filter to a given sample when up-converting.
|
||||||
|
@ -459,7 +459,7 @@ double step_to_hz(double);
|
|||||||
|
|
||||||
#ifdef WIN32
|
#ifdef WIN32
|
||||||
double log2(double x);
|
double log2(double x);
|
||||||
#endif WIN32
|
#endif /* WIN32 */
|
||||||
|
|
||||||
/* macros for access to samples within a suspension */
|
/* macros for access to samples within a suspension */
|
||||||
/* NOTE: assume suspension structure is named "susp" */
|
/* NOTE: assume suspension structure is named "susp" */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user