mirror of
https://github.com/overte-org/overte.git
synced 2025-08-03 22:43:15 +02:00
Suppress Windows C4305 compiler warnings in gverb includes
This commit is contained in:
parent
a8d718be82
commit
9e32b2c64e
1 changed files with 7 additions and 0 deletions
|
@ -45,10 +45,17 @@
|
|||
#include <AudioRingBuffer.h>
|
||||
#include <StDev.h>
|
||||
|
||||
#ifdef _WIN32
|
||||
#pragma warning( push )
|
||||
#pragma warning( disable : 4305 )
|
||||
#endif
|
||||
extern "C" {
|
||||
#include <gverb.h>
|
||||
#include <gverbdsp.h>
|
||||
}
|
||||
#ifdef _WIN32
|
||||
#pragma warning( pop )
|
||||
#endif
|
||||
|
||||
static const int NUM_AUDIO_CHANNELS = 2;
|
||||
|
||||
|
|
Loading…
Reference in a new issue