2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-22 17:32:55 +00:00

Correct version for VC7.1 workaround

[SVN r14719]
This commit is contained in:
Dave Abrahams
2002-08-06 22:36:43 +00:00
parent 88b3bf1887
commit 88528e338b

View File

@@ -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 <class T>
inline void force_instantiate(T const&) {}