diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Python/Matlab2Python_utils.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Python/Matlab2Python_utils.cpp b/src/Python/Matlab2Python_utils.cpp index e15d738..ee76bc7 100644 --- a/src/Python/Matlab2Python_utils.cpp +++ b/src/Python/Matlab2Python_utils.cpp @@ -123,7 +123,7 @@ T * mxGetData(const np::ndarray pm) { probably this would work. A = reinterpret_cast<float *>(prhs[0]); */ - return reinterpret_cast<T *>(prhs[0]); + //return reinterpret_cast<T *>(prhs[0]); } template<typename T> @@ -273,4 +273,4 @@ BOOST_PYTHON_MODULE(prova) //numpy_boost_python_register_type<double, 3>(); def("mexFunction", mexFunction); def("doSomething", doSomething); -}
\ No newline at end of file +} |