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

Merge pull request #40 from jwakely/issue-39

Python: Fix condition for make_setter overload.
This commit is contained in:
Stefan Seefeld
2015-09-02 08:07:49 -04:00

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)
{