2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-27 07:02:15 +00:00

Adjust version number for old EDG workaround

[SVN r15421]
This commit is contained in:
Dave Abrahams
2002-09-17 20:43:46 +00:00
parent eb3e237e47
commit 0b75a8e94e

View File

@@ -79,7 +79,7 @@ inline T object_manager_value_arg_from_python<T>::operator()(PyObject* x) const
template <class Ref>
inline object_manager_ref_arg_from_python<Ref>::object_manager_ref_arg_from_python(PyObject* x)
{
# if defined(__EDG_VERSION__) && __EDG_VERSION__ <= 241
# if defined(__EDG_VERSION__) && __EDG_VERSION__ <= 243
// needed for warning suppression
python::detail::borrowed_reference x_ = python::detail::borrowed_reference(x);
python::detail::construct_referent<Ref>(&m_result.bytes, x_);