Skip to content

Commit 0de8a60

Browse files
committed
fix ? symbols
1 parent d78bf9d commit 0de8a60

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Externals/ode/ode/src/util.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ void dxProcessIslands (dxWorld *world, dReal stepsize, dstepper_fn_t stepper);
4343
inline bool dValid(const float x)
4444
{
4545
#ifdef MSVC
46-
// check for: Signaling NaN, Quiet NaN, Negative infinity (INF), Positive infinity (+INF), Negative denormalized, Positive denormalized
46+
// check for: Signaling NaN, Quiet NaN, Negative infinity (-INF), Positive infinity (+INF), Negative denormalized, Positive denormalized
4747
int cls = _fpclass (double(x));
4848
if (cls&(_FPCLASS_SNAN+_FPCLASS_QNAN+_FPCLASS_NINF+_FPCLASS_PINF+_FPCLASS_ND+_FPCLASS_PD))
4949
return false;
@@ -61,7 +61,7 @@ inline bool dValid(const float x)
6161
#endif
6262
/* *****other cases are*****
6363
_FPCLASS_NN Negative normalized non-zero
64-
_FPCLASS_NZ Negative zero (0)
64+
_FPCLASS_NZ Negative zero (-0)
6565
_FPCLASS_PZ Positive 0 (+0)
6666
_FPCLASS_PN Positive normalized non-zero
6767
*/

0 commit comments

Comments
 (0)