2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-26 06:42:27 +00:00

Python: Fix condition for make_setter overload.

This fixes the regression caused by 42e7d7b.

Fixes #39
This commit is contained in:
Jonathan Wakely
2015-09-02 13:02:12 +01:00
parent 5dce79445d
commit f410fbd64d

View File

@@ -305,7 +305,7 @@ inline object make_setter(D& x)
return detail::make_setter(x, default_call_policies(), is_member_pointer<D>(), 0);
}
# if BOOST_WORKAROUND(__EDG_VERSION__, <= 238)
# if !BOOST_WORKAROUND(__EDG_VERSION__, <= 238)
template <class D>
inline object make_setter(D const& x)
{