From cca7b357123347d81a1d5c59bb00547271747b2b Mon Sep 17 00:00:00 2001 From: Daniel James Date: Sat, 27 Jun 2009 10:46:20 +0000 Subject: [PATCH] Add missing #pragma warning(pop) in Boost.Function. Merged revisions 53694 via svnmerge from https://svn.boost.org/svn/boost/trunk ........ r53694 | danieljames | 2009-06-06 16:31:47 +0100 (Sat, 06 Jun 2009) | 1 line Add missing #pragma warning(pop). Fixes #2767. ........ [SVN r54410] --- 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 6612fb8..0628ae7 100644 --- a/include/boost/function/function_base.hpp +++ b/include/boost/function/function_base.hpp @@ -877,4 +877,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