From e10f4eaef98c3d49bfd8fbedc7b2ed2966d82f72 Mon Sep 17 00:00:00 2001 From: Daniel James Date: Sat, 6 Jun 2009 15:31:47 +0000 Subject: [PATCH] Add missing #pragma warning(pop). Fixes #2767. [SVN r53694] --- include/boost/function/function_base.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/boost/function/function_base.hpp b/include/boost/function/function_base.hpp index 2cc6bf6..fe8e17d 100644 --- a/include/boost/function/function_base.hpp +++ b/include/boost/function/function_base.hpp @@ -889,4 +889,8 @@ namespace detail { #undef BOOST_FUNCTION_ENABLE_IF_NOT_INTEGRAL #undef BOOST_FUNCTION_COMPARE_TYPE_ID +#if defined(BOOST_MSVC) +# pragma warning( pop ) +#endif + #endif // BOOST_FUNCTION_BASE_HEADER