From 359ae0323122e869596a8944a5d331c1aa689f54 Mon Sep 17 00:00:00 2001
From: Justin Carpentier <justin.carpentier@inria.fr>
Date: Fri, 26 Jan 2024 15:09:16 +0100
Subject: [PATCH] core: fix compilation issue on Windows

include\eigenpy/numpy-type.hpp(32): error C2196: case value 'NPY_LONGLONG' already used
---
 include/eigenpy/numpy-type.hpp | 1 -
 1 file changed, 1 deletion(-)

diff --git a/include/eigenpy/numpy-type.hpp b/include/eigenpy/numpy-type.hpp
index 319fd2ab..25dee99f 100644
--- a/include/eigenpy/numpy-type.hpp
+++ b/include/eigenpy/numpy-type.hpp
@@ -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
-- 
GitLab