Skip to content

Commit 5cda058

Browse files
author
Ralf W. Grosse-Kunstleve
committed
bug fix (IRIX CC diagnostics)
[SVN r15167]
1 parent ce2e9de commit 5cda058

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

include/boost/python/module.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class module : public detail::module_base
3131
template <class T>
3232
module& setattr(const char* name, T const& x)
3333
{
34-
this->module_base::setattr_doc(name, python::object(x), 0);
34+
this->base::setattr_doc(name, python::object(x), 0);
3535
return *this;
3636
}
3737

0 commit comments

Comments
 (0)