From 4f7298939af7314e3e9c819be14b4362b22b2731 Mon Sep 17 00:00:00 2001 From: Justin Carpentier <justin.carpentier@inria.fr> Date: Tue, 16 Apr 2019 14:06:43 +0200 Subject: [PATCH] core: comment not used lines --- include/eigenpy/details.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/eigenpy/details.hpp b/include/eigenpy/details.hpp index 693a4b72..b26af7d2 100644 --- a/include/eigenpy/details.hpp +++ b/include/eigenpy/details.hpp @@ -104,8 +104,8 @@ namespace eigenpy NumpyMatrixType = reinterpret_cast<PyTypeObject*>(NumpyMatrixObject.ptr()); NumpyArrayObject = pyModule.attr("ndarray"); NumpyArrayType = reinterpret_cast<PyTypeObject*>(NumpyArrayObject.ptr()); - NumpyAsMatrixObject = pyModule.attr("asmatrix"); - NumpyAsMatrixType = reinterpret_cast<PyTypeObject*>(NumpyAsMatrixObject.ptr()); + //NumpyAsMatrixObject = pyModule.attr("asmatrix"); + //NumpyAsMatrixType = reinterpret_cast<PyTypeObject*>(NumpyAsMatrixObject.ptr()); CurrentNumpyType = NumpyMatrixObject; // default conversion } @@ -115,7 +115,7 @@ namespace eigenpy // Numpy types bp::object NumpyMatrixObject; PyTypeObject * NumpyMatrixType; - bp::object NumpyAsMatrixObject; PyTypeObject * NumpyAsMatrixType; + //bp::object NumpyAsMatrixObject; PyTypeObject * NumpyAsMatrixType; bp::object NumpyArrayObject; PyTypeObject * NumpyArrayType; }; -- GitLab