Skip to content

Commit 4f72989

Browse files
committed
core: comment not used lines
1 parent 15355e6 commit 4f72989

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

include/eigenpy/details.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,8 @@ namespace eigenpy
104104
NumpyMatrixType = reinterpret_cast<PyTypeObject*>(NumpyMatrixObject.ptr());
105105
NumpyArrayObject = pyModule.attr("ndarray");
106106
NumpyArrayType = reinterpret_cast<PyTypeObject*>(NumpyArrayObject.ptr());
107-
NumpyAsMatrixObject = pyModule.attr("asmatrix");
108-
NumpyAsMatrixType = reinterpret_cast<PyTypeObject*>(NumpyAsMatrixObject.ptr());
107+
//NumpyAsMatrixObject = pyModule.attr("asmatrix");
108+
//NumpyAsMatrixType = reinterpret_cast<PyTypeObject*>(NumpyAsMatrixObject.ptr());
109109

110110
CurrentNumpyType = NumpyMatrixObject; // default conversion
111111
}
@@ -115,7 +115,7 @@ namespace eigenpy
115115

116116
// Numpy types
117117
bp::object NumpyMatrixObject; PyTypeObject * NumpyMatrixType;
118-
bp::object NumpyAsMatrixObject; PyTypeObject * NumpyAsMatrixType;
118+
//bp::object NumpyAsMatrixObject; PyTypeObject * NumpyAsMatrixType;
119119
bp::object NumpyArrayObject; PyTypeObject * NumpyArrayType;
120120
};
121121

0 commit comments

Comments
 (0)