We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5933fdb commit 567e620Copy full SHA for 567e620
include/boost/python/class.hpp
@@ -436,14 +436,14 @@ class class_ : public objects::class_base
436
437
template <class D>
438
self& def_readonly_impl(
439
- char const* name, D& d BOOST_PYTHON_NO_DATA_MEMBER)
+ char const* name, D& d BOOST_PYTHON_NO_DATA_MEMBER, char const*)
440
{
441
return this->add_static_property(name, python::make_getter(d));
442
}
443
444
445
self& def_readwrite_impl(
446
447
448
return this->add_static_property(name, python::make_getter(d), python::make_setter(d));
449
0 commit comments