Address warnings on VS

We have to ignore many of these warnings due to the nature of Boxed_Number supporting any operation.
This commit is contained in:
Jason Turner 2015-06-08 13:18:52 -06:00
parent e4be97eb79
commit b95526951f

View File

@ -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