Skip to content

Commit

Permalink
core: fix compilation issue on Windows
Browse files Browse the repository at this point in the history
include\eigenpy/numpy-type.hpp(32): error C2196: case value 'NPY_LONGLONG' already used
  • Loading branch information
jcarpent committed Jan 26, 2024
1 parent 2c12261 commit 359ae03
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion include/eigenpy/numpy-type.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ bool np_type_is_convertible_into_scalar(const int np_type) {
case NPY_INT:
case NPY_LONG:
return FromTypeToType<int, Scalar>::value;
case NPY_INT64:
case NPY_LONGLONG:
return FromTypeToType<__int64, Scalar>::value;
#else
Expand Down

0 comments on commit 359ae03

Please sign in to comment.