diff --git a/include/eigenpy/details.hpp b/include/eigenpy/details.hpp
index 9a43df4b7389fbf22ada994408c50a8f3f858fe6..22110af0cdc639cbb1a88ab049c84ebe4c10e508 100644
--- a/include/eigenpy/details.hpp
+++ b/include/eigenpy/details.hpp
@@ -514,13 +514,6 @@ namespace eigenpy
     }
   };
   
-  template<typename MatType,typename EigenEquivalentType>
-  EIGENPY_DEPRECATED
-  void enableEigenPySpecific()
-  {
-    enableEigenPySpecific<MatType>();
-  }
-  
   template<typename MatType>
   struct EigenFromPyConverter
   {
@@ -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"); } }
   
+  template<typename MatType,typename EigenEquivalentType>
+  EIGENPY_DEPRECATED
+  void enableEigenPySpecific()
+  {
+    enableEigenPySpecific<MatType>();
+  }
+
   template<typename MatType>
   void enableEigenPySpecific()
   {