3
0
Fork 0
mirror of https://github.com/lubosz/overte.git synced 2025-04-26 13:55:31 +02:00

Merge pull request from ctrlaltdavid/suppress-gverb-warnings

Suppress Windows C4305 compiler warnings in gverb includes
This commit is contained in:
Brad Hefta-Gaub 2014-11-21 11:07:55 -08:00
commit 9c9381e57e

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;