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

core: fix signature

parent 20b89555
No related branches found
No related tags found
No related merge requests found
......@@ -45,7 +45,7 @@ namespace eigenpy
EIGENPY_DLLEXPORT PyTypeObject * getPyArrayType();
EIGENPY_DLLEXPORT int call_PyArray_DescrFromType(int typenum);
EIGENPY_DLLEXPORT PyArray_Descr * call_PyArray_DescrFromType(int typenum);
EIGENPY_DLLEXPORT void call_PyArray_InitArrFuncs(PyArray_ArrFuncs * funcs);
......
......@@ -39,7 +39,7 @@ namespace eigenpy
PyTypeObject * getPyArrayType() { return &PyArray_Type; }
int call_PyArray_DescrFromType(int typenum)
PyArray_Descr * call_PyArray_DescrFromType(int typenum)
{
return PyArray_DescrFromType(typenum);
}
......
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