diff --git a/src/position.h b/src/position.h index ff907d83..ab2b21de 100644 --- a/src/position.h +++ b/src/position.h @@ -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 ////