diff --git a/src/core/boost/timer.hpp b/src/core/boost/timer.hpp index 583d4c47..19e2fd72 100644 --- a/src/core/boost/timer.hpp +++ b/src/core/boost/timer.hpp @@ -13,10 +13,19 @@ #pragma once #endif +#ifdef _MSC_VER +#pragma warning(push) +#pragma warning(disable : 4244) +#endif + // -------------------------- Includes -------------------------- #include "boost/timer/implementation.hpp" #include "boost/timer/devices.hpp" #include "boost/timer/typedefs.hpp" +#ifdef _MSC_VER +#pragma warning(pop) +#endif + #endif // BOOST_TIMER_HPP