mirror of
https://github.com/lubosz/overte.git
synced 2025-04-26 13:55:31 +02:00
Merge pull request #3849 from ctrlaltdavid/suppress-gverb-warnings
Suppress Windows C4305 compiler warnings in gverb includes
This commit is contained in:
commit
9c9381e57e
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