For Visual Studio I would use _isnan
and _finite
, or perhaps _fpclass
.
But if you have access to a C++11-able standard library and compiler you could use std::isnan
and std::isinf
.
For Visual Studio I would use _isnan
and _finite
, or perhaps _fpclass
.
But if you have access to a C++11-able standard library and compiler you could use std::isnan
and std::isinf
.