From 88528e338b151d7a3ec17fba9daa3df81e129acd Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Tue, 6 Aug 2002 22:36:43 +0000 Subject: [PATCH] Correct version for VC7.1 workaround [SVN r14719] --- include/boost/python/detail/force_instantiate.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/python/detail/force_instantiate.hpp b/include/boost/python/detail/force_instantiate.hpp index 6a08cf56..62446c32 100755 --- a/include/boost/python/detail/force_instantiate.hpp +++ b/include/boost/python/detail/force_instantiate.hpp @@ -11,7 +11,7 @@ namespace boost { namespace python { namespace detail { // Allows us to force the argument to be instantiated without // incurring unused variable warnings -# if !defined(BOOST_MSVC) || BOOST_MSVC == 1200 || _MSC_FULL_VER > 13102171 +# if !defined(BOOST_MSVC) || BOOST_MSVC == 1200 || _MSC_FULL_VER > 13102196 template inline void force_instantiate(T const&) {}