ignore gverb warnings

This commit is contained in:
Brad Hefta-Gaub 2015-09-24 09:07:43 -07:00
parent 5e82b9c433
commit 776acf2182

View file

@ -38,11 +38,20 @@
#pragma GCC diagnostic ignored "-Wdouble-promotion"
#endif
#ifdef WIN32
#pragma warning (push)
#pragma warning (disable: 4273 4305)
#endif
extern "C" {
#include <gverb/gverb.h>
#include <gverb/gverbdsp.h>
}
#ifdef WIN32
#pragma warning (pop)
#endif
#if defined(__GNUC__) && !defined(__clang__)
#pragma GCC diagnostic pop
#endif