commit 19f6d61635396482831df53947045edf48db5fbd parent d03383a46cdfb1eac9b1a7c27c1b697603546392 Author: [email protected] <[email protected]> Date: Fri, 31 Mar 2017 22:54:56 +0300 Visual Studio: suppress warnings Diffstat:
M | include/kfr/base/constants.hpp | | | 6 | ++++++ |
1 file changed, 6 insertions(+), 0 deletions(-)
diff --git a/include/kfr/base/constants.hpp b/include/kfr/base/constants.hpp @@ -28,6 +28,10 @@ #include "types.hpp" #include <limits> +CMT_PRAGMA_MSVC(warning(push)) +CMT_PRAGMA_MSVC(warning(disable : 4309)) +CMT_PRAGMA_MSVC(warning(disable : 4146)) + namespace kfr { @@ -288,3 +292,5 @@ constexpr subtype<T> c_log_10 = subtype<T>(2.3025850929940456840179914546844); template <typename T, int m = 1, int d = 1> constexpr subtype<T> c_sqrt_2 = subtype<T>(1.4142135623730950488016887242097 * m / d); } + +CMT_PRAGMA_MSVC(warning(pop))