From 2899984ed90cbdeb429935da880737d9a40878ad Mon Sep 17 00:00:00 2001 From: Hans-Christian Ebke Date: Thu, 19 Nov 2015 15:42:39 +0100 Subject: [PATCH] C++11: Fixed OpenMesh Python bindings. --- src/Python/Vector.hh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Python/Vector.hh b/src/Python/Vector.hh index 759a6638..68cfaf94 100644 --- a/src/Python/Vector.hh +++ b/src/Python/Vector.hh @@ -151,12 +151,12 @@ void expose_vec(const char *_name) { .def("vectorize", &Vector::vectorize, return_internal_reference<>()) .def(self < self) - .def("norm", &Vector::norm) - .def("length", &Vector::length) - .def("sqrnorm", &Vector::sqrnorm) - .def("normalize", &Vector::normalize, return_internal_reference<>()) - .def("normalized", &Vector::normalized) - .def("normalize_cond", &Vector::normalize_cond, return_internal_reference<>()) + .def("norm", &Vector::template norm) + .def("length", &Vector::template length) + .def("sqrnorm", &Vector::template sqrnorm) + .def("normalize", &Vector::template normalize, return_internal_reference<>()) + .def("normalized", &Vector::template normalized) + .def("normalize_cond", &Vector::template normalize_cond, return_internal_reference<>()) .def("l1_norm", &Vector::l1_norm) .def("l8_norm", &Vector::l8_norm)