mirror of
https://github.com/claunia/flac.git
synced 2025-12-16 18:54:26 +00:00
add pragma to disable annoying MSVC warning C4800
This commit is contained in:
@@ -34,6 +34,11 @@
|
||||
#include <stdlib.h> // for malloc(), free()
|
||||
#include <string.h> // for memcpy() etc.
|
||||
|
||||
#ifdef _MSC_VER
|
||||
// warning C4800: 'int' : forcing to bool 'true' or 'false' (performance warning)
|
||||
#pragma warning ( disable : 4800 )
|
||||
#endif
|
||||
|
||||
namespace FLAC {
|
||||
namespace Metadata {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user