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

core: fix compilation issue on Windows

include\eigenpy/numpy-type.hpp(32): error C2196: case value 'NPY_LONGLONG' already used
parent 2c12261d
No related branches found
No related tags found
No related merge requests found
Pipeline #35646 passed with warnings
...@@ -28,7 +28,6 @@ bool np_type_is_convertible_into_scalar(const int np_type) { ...@@ -28,7 +28,6 @@ bool np_type_is_convertible_into_scalar(const int np_type) {
case NPY_INT: case NPY_INT:
case NPY_LONG: case NPY_LONG:
return FromTypeToType<int, Scalar>::value; return FromTypeToType<int, Scalar>::value;
case NPY_INT64:
case NPY_LONGLONG: case NPY_LONGLONG:
return FromTypeToType<__int64, Scalar>::value; return FromTypeToType<__int64, Scalar>::value;
#else #else
......
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