File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments