diff options
Diffstat (limited to 'alc/voice.cpp')
-rw-r--r-- | alc/voice.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/alc/voice.cpp b/alc/voice.cpp index 64e0bde4..493687ae 100644 --- a/alc/voice.cpp +++ b/alc/voice.cpp @@ -63,6 +63,15 @@ #include "threads.h" #include "vector.h" +struct CTag; +#ifdef HAVE_SSE +struct SSETag; +#endif +#ifdef HAVE_NEON +struct NEONTag; +#endif +struct CopyTag; + static_assert((BUFFERSIZE-1)/MAX_PITCH > 0, "MAX_PITCH is too large for BUFFERSIZE!"); static_assert((INT_MAX>>FRACTIONBITS)/MAX_PITCH > BUFFERSIZE, |