#pragma to turn off useless MSVC warning C4800

This commit is contained in:
Josh Coalson
2003-12-18 05:16:44 +00:00
parent 93c66d76e9
commit b7eeec1eeb
12 changed files with 60 additions and 0 deletions

View File

@@ -32,6 +32,11 @@
#include "OggFLAC++/decoder.h"
#include "FLAC/assert.h"
#ifdef _MSC_VER
// warning C4800: 'int' : forcing to bool 'true' or 'false' (performance warning)
#pragma warning ( disable : 4800 )
#endif
namespace OggFLAC {
namespace Decoder {