From 5f82b5ac5039031ad6bf6a2a592bd0c8caf18630 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Sun, 8 May 2016 18:13:26 +0100 Subject: [PATCH] Suppress msvc-14 warning. --- include/boost/type_traits/is_virtual_base_of.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/type_traits/is_virtual_base_of.hpp b/include/boost/type_traits/is_virtual_base_of.hpp index f005256..84cb355 100644 --- a/include/boost/type_traits/is_virtual_base_of.hpp +++ b/include/boost/type_traits/is_virtual_base_of.hpp @@ -17,7 +17,7 @@ namespace detail { #ifdef BOOST_MSVC #pragma warning( push ) -#pragma warning( disable : 4584 4250) +#pragma warning( disable : 4584 4250 4594) #elif defined(__GNUC__) && (__GNUC__ >= 4) #pragma GCC system_header #endif