Expand SILK macro to avoid "Wexpansion-to-defined" violation
Signed-off-by: Jean-Marc Valin <jmvalin@jmvalin.ca>
This commit is contained in:
parent
288bd59f48
commit
c4c897ea48
1 changed files with 5 additions and 1 deletions
|
@ -44,7 +44,11 @@ POSSIBILITY OF SUCH DAMAGE.
|
|||
#endif
|
||||
|
||||
/* Set this if opus_int64 is a native type of the CPU. */
|
||||
#define OPUS_FAST_INT64 (defined(__x86_64__) || defined(__LP64__) || defined(_WIN64))
|
||||
#if defined(__x86_64__) || defined(__LP64__) || defined(_WIN64)
|
||||
#define OPUS_FAST_INT64 1
|
||||
#else
|
||||
#define OPUS_FAST_INT64 0
|
||||
#endif
|
||||
|
||||
/* This is an OPUS_INLINE header file for general platform. */
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue