mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-09 08:56:25 +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 <AudioRingBuffer.h>
|
||||||
#include <StDev.h>
|
#include <StDev.h>
|
||||||
|
|
||||||
|
#ifdef _WIN32
|
||||||
|
#pragma warning( push )
|
||||||
|
#pragma warning( disable : 4305 )
|
||||||
|
#endif
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#include <gverb.h>
|
#include <gverb.h>
|
||||||
#include <gverbdsp.h>
|
#include <gverbdsp.h>
|
||||||
}
|
}
|
||||||
|
#ifdef _WIN32
|
||||||
|
#pragma warning( pop )
|
||||||
|
#endif
|
||||||
|
|
||||||
static const int NUM_AUDIO_CHANNELS = 2;
|
static const int NUM_AUDIO_CHANNELS = 2;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue