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

core: fix special case on windows

parent eeb955a8
No related branches found
No related tags found
No related merge requests found
Pipeline #35642 passed with warnings
......@@ -26,6 +26,10 @@ bool np_type_is_convertible_into_scalar(const int np_type) {
switch (np_type) {
case NPY_INT:
return FromTypeToType<int, Scalar>::value;
#ifdef WIN32
case NPY_INT64:
return FromTypeToType<__int64, Scalar>::value;
#endif
case NPY_LONG:
return FromTypeToType<long, Scalar>::value;
case NPY_FLOAT:
......
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