maxover broken in gtfn #1289
Labels
gt4py.next
Issues concerning the new version with support for non-cartesian grids.
module: frontend
Frontend subpackage
triage: bug
Something isn't working
maxover is failing in C++ because we generate -2147483648 which in c++ is long int because 2147483648 is a long int literal which is then negated. Therefore we try to instantiate
std::max<int, long int>
.2 possible solution:
See #1282
The text was updated successfully, but these errors were encountered: