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

core: avoid boring warning

parent 0343c156
No related branches found
No related tags found
No related merge requests found
......@@ -32,7 +32,7 @@ namespace eigenpy
template<typename Scalar>
bool isNumpyNativeType()
{
if(NumpyEquivalentType<Scalar>::type_code == NPY_USERDEF)
if((int)NumpyEquivalentType<Scalar>::type_code == NPY_USERDEF)
return false;
return true;
}
......
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