Fix max of array types in the case of all non-positive values
- Apr 21, 2024
-
-
Stéphane Del Pino authored
Replace instances of -std::numeric_limits<T>::max() by std::numeric_limits<T>::lowest() which is more generic
-
Stéphane Del Pino authored
Thanks to Philippe for noticing it. This was a classic misused of std::numeric_limits<T>::min()...
-