From b95526951f149120497d1895e77e45a30845ede8 Mon Sep 17 00:00:00 2001 From: Jason Turner Date: Mon, 8 Jun 2015 13:18:52 -0600 Subject: [PATCH] Address warnings on VS We have to ignore many of these warnings due to the nature of Boxed_Number supporting any operation. --- include/chaiscript/dispatchkit/boxed_number.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/chaiscript/dispatchkit/boxed_number.hpp b/include/chaiscript/dispatchkit/boxed_number.hpp index 4c0ef65..2344e09 100644 --- a/include/chaiscript/dispatchkit/boxed_number.hpp +++ b/include/chaiscript/dispatchkit/boxed_number.hpp @@ -43,7 +43,7 @@ namespace chaiscript // this is OK, so we're disabling size/and sign type warnings #ifdef CHAISCRIPT_MSVC #pragma warning(push) -#pragma warning(disable : 4244 4018 4389 4146 4365) +#pragma warning(disable : 4244 4018 4389 4146 4365 4267) #endif