diff options
Diffstat (limited to 'python/py_value.cc')
-rw-r--r-- | python/py_value.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/py_value.cc b/python/py_value.cc index 79b367a1..a4de7c04 100644 --- a/python/py_value.cc +++ b/python/py_value.cc @@ -174,7 +174,7 @@ void export_value() .def(self / double()) .def(double() / self) - .def("negate", &value_t::negate) + .def("negated", &value_t::negated) .def("in_place_negate", &value_t::in_place_negate) .def("in_place_not", &value_t::in_place_not) .def(- self) |