May 29, 2026
5:06 p.m.
Piotr Caban (@piotr) commented about dlls/msvcp90/math.c:
return this; }
+/* ?_Isinf@?$_Ctraits@M@std@@SA_NM@Z -> bool std::_Ctraits<float>::_Isinf(float) */ +BOOLEAN __cdecl std_Ctraits_float__Isinf( float x ) { return !_finite(x) && !_isnan(x); }
Is there any reason for not using `isinf()`? -- https://gitlab.winehq.org/wine/wine/-/merge_requests/11003#note_141729