From 50e7e269e5e338901440c272d04808d043c0420c Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Tue, 7 Jul 2015 18:21:01 +0100 Subject: [PATCH] Try and suppress some vc9 warnings. --- include/boost/type_traits/is_copy_constructible.hpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/include/boost/type_traits/is_copy_constructible.hpp b/include/boost/type_traits/is_copy_constructible.hpp index 77c4ac5..c688264 100644 --- a/include/boost/type_traits/is_copy_constructible.hpp +++ b/include/boost/type_traits/is_copy_constructible.hpp @@ -72,6 +72,11 @@ namespace boost { #include #include +#ifdef BOOST_MSVC +#pragma warning(push) +#pragma warning(disable:4181) +#endif + namespace boost { namespace detail{ @@ -173,6 +178,10 @@ namespace boost { } // namespace boost +#ifdef BOOST_MSVC +#pragma warning(pop) +#endif + #endif #endif // BOOST_TT_IS_COPY_CONSTRUCTIBLE_HPP_INCLUDED