Skip to content
Snippets Groups Projects
Verified Commit defe0330 authored by Justin Carpentier's avatar Justin Carpentier
Browse files

core: move function

parent 653f25df
No related branches found
No related tags found
No related merge requests found
...@@ -514,13 +514,6 @@ namespace eigenpy ...@@ -514,13 +514,6 @@ namespace eigenpy
} }
}; };
template<typename MatType,typename EigenEquivalentType>
EIGENPY_DEPRECATED
void enableEigenPySpecific()
{
enableEigenPySpecific<MatType>();
}
template<typename MatType> template<typename MatType>
struct EigenFromPyConverter struct EigenFromPyConverter
{ {
...@@ -582,6 +575,13 @@ namespace eigenpy ...@@ -582,6 +575,13 @@ namespace eigenpy
#define numpy_import_array() {if (_import_array() < 0) {PyErr_Print(); PyErr_SetString(PyExc_ImportError, "numpy.core.multiarray failed to import"); } } #define numpy_import_array() {if (_import_array() < 0) {PyErr_Print(); PyErr_SetString(PyExc_ImportError, "numpy.core.multiarray failed to import"); } }
template<typename MatType,typename EigenEquivalentType>
EIGENPY_DEPRECATED
void enableEigenPySpecific()
{
enableEigenPySpecific<MatType>();
}
template<typename MatType> template<typename MatType>
void enableEigenPySpecific() void enableEigenPySpecific()
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment