Suppress Windows C4305 compiler warnings in gverb includes

This commit is contained in:
David Rowe 2014-11-20 20:58:31 -08:00
parent a8d718be82
commit 9e32b2c64e

View file

@ -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;