From b722d7208b5a87d831564ebb73fb60f35d668bbd Mon Sep 17 00:00:00 2001 From: John Maddock Date: Fri, 5 Nov 2010 09:50:42 +0000 Subject: [PATCH] Fix MSVC warning. [SVN r66404] --- 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 98ab159..8dcd988 100644 --- a/include/boost/type_traits/is_virtual_base_of.hpp +++ b/include/boost/type_traits/is_virtual_base_of.hpp @@ -22,7 +22,7 @@ namespace detail { #ifdef BOOST_MSVC #pragma warning( push ) -#pragma warning( disable : 4584 ) +#pragma warning( disable : 4584 4250) #elif defined __GNUC__ #pragma GCC system_header #endif