Skip to content

Commit f410fbd

Browse files
committed
Python: Fix condition for make_setter overload.
This fixes the regression caused by 42e7d7b. Fixes boostorg#39
1 parent 5dce794 commit f410fbd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/boost/python/data_members.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ inline object make_setter(D& x)
305305
return detail::make_setter(x, default_call_policies(), is_member_pointer<D>(), 0);
306306
}
307307

308-
# if BOOST_WORKAROUND(__EDG_VERSION__, <= 238)
308+
# if !BOOST_WORKAROUND(__EDG_VERSION__, <= 238)
309309
template <class D>
310310
inline object make_setter(D const& x)
311311
{

0 commit comments

Comments
 (0)