From 0cb4c18638927b3e3c847c2eac82233f9dc916eb Mon Sep 17 00:00:00 2001 From: Jason Turner Date: Fri, 4 Mar 2016 18:22:21 -0700 Subject: [PATCH] Fix some more windows warnings --- unittests/compiled_tests.cpp | 2 +- unittests/type_info_test.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/unittests/compiled_tests.cpp b/unittests/compiled_tests.cpp index 551470eb..2d70c8e4 100644 --- a/unittests/compiled_tests.cpp +++ b/unittests/compiled_tests.cpp @@ -4,7 +4,7 @@ #ifdef _MSC_VER #pragma warning(push) -#pragma warning(disable : 4242 28251) +#pragma warning(disable : 4242 4702 6330 28251) #endif #ifdef __GNUC__ diff --git a/unittests/type_info_test.cpp b/unittests/type_info_test.cpp index 15bd633d..a79fbb26 100644 --- a/unittests/type_info_test.cpp +++ b/unittests/type_info_test.cpp @@ -2,7 +2,7 @@ #ifdef _MSC_VER #pragma warning(push) -#pragma warning(disable : 4242 28251) +#pragma warning(disable : 4242 4702 6330 28251) #endif #ifdef __GNUC__