From 567e620565e6915e4223a9a3dc5ee63fbaa2acfe Mon Sep 17 00:00:00 2001 From: Jonathan Brandmeyer Date: Mon, 24 Jan 2005 02:37:37 +0000 Subject: [PATCH] Match signatures with their mpl::true variants [SVN r26829] --- include/boost/python/class.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/python/class.hpp b/include/boost/python/class.hpp index c249cc17..f5ba2f2f 100644 --- a/include/boost/python/class.hpp +++ b/include/boost/python/class.hpp @@ -436,14 +436,14 @@ class class_ : public objects::class_base template self& def_readonly_impl( - char const* name, D& d BOOST_PYTHON_NO_DATA_MEMBER) + char const* name, D& d BOOST_PYTHON_NO_DATA_MEMBER, char const*) { return this->add_static_property(name, python::make_getter(d)); } template self& def_readwrite_impl( - char const* name, D& d BOOST_PYTHON_NO_DATA_MEMBER) + char const* name, D& d BOOST_PYTHON_NO_DATA_MEMBER, char const*) { return this->add_static_property(name, python::make_getter(d), python::make_setter(d)); }