You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug std::isnan is supposed to have an overload for all integral types. The lack of this overload triggers C2668 when called using an unsigned short.
This is LWG-1327 which is #resolved in C++11. Unfortunately, the overloads are currently provided in UCRT, and a complete resolution cannot be achieved in this repo.
Describe the bug
std::isnan
is supposed to have an overload for all integral types. The lack of this overload triggers C2668 when called using anunsigned short
.Godbolt
Expected behavior
Call proper overload (casting to
double
).STL version
The text was updated successfully, but these errors were encountered: