Fix Clang compile error due to introduction of PCH

This commit is contained in:
Max Roncace
2026-03-29 22:23:44 -04:00
parent f2c0ad8ab2
commit eed5df6912
+4
View File
@@ -6,6 +6,9 @@
#include "JSystem/JAudio2/JASAudioThread.h"
#include "JSystem/JAudio2/JAUSoundTable.h"
#if TARGET_PC
#define AUDIO_INSTANCES
#else
#define AUDIO_INSTANCES \
template<> JASDefaultBankTable* JASGlobalInstance<JASDefaultBankTable>::sInstance; \
template<> JASAudioThread* JASGlobalInstance<JASAudioThread>::sInstance; \
@@ -32,5 +35,6 @@
template<> Z2EnvSeMgr* JASGlobalInstance<Z2EnvSeMgr>::sInstance; \
template<> Z2SpeechMgr* JASGlobalInstance<Z2SpeechMgr>::sInstance; \
template<> Z2WolfHowlMgr* JASGlobalInstance<Z2WolfHowlMgr>::sInstance;
#endif
#endif