mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-01 16:19:43 +02:00
Since it is only issued with clang 11(+), attempting to disable it for via Xcode options doesn't work on older versions of Xcode/clang. So, make it clang version specific via configmac.h.
10 lines
194 B
C
10 lines
194 B
C
// Macintosh-specific include file
|
|
|
|
#include "../src/configunix.h"
|
|
#define USE_AQUA_THEME 1
|
|
|
|
#if __clang_major__ >= 11
|
|
#pragma clang diagnostic ignored "-Wunderaligned-exception-object"
|
|
#endif
|
|
|