1
0
Fork 0

Disable a stupid and noisy MSVC warning

Remove the crap from compiler messages.

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
sf_2.3.1_base
Marco Costalba 2008-09-18 10:29:26 +01:00
parent 925f97f4e7
commit 4c5eaeb363
1 changed files with 8 additions and 0 deletions

View File

@ -20,6 +20,14 @@
#if !defined(POSITION_H_INCLUDED)
#define POSITION_H_INCLUDED
// Disable a silly and noisy warning from MSVC compiler
#if defined(_MSC_VER)
// Forcing value to bool 'true' or 'false' (performance warning)
#pragma warning(disable: 4800)
#endif
////
//// Includes
////