Skip to content
Snippets Groups Projects
Unverified Commit 7de92834 authored by Justin Carpentier's avatar Justin Carpentier Committed by GitHub
Browse files

Merge pull request #192 from jcarpent/devel

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