‘isnan’ was not declared in this scope
isnan在cmath中被取消宏定义
// These are possible macros imported from C99-land.
#undef fpclassify
#undef isfinite
#undef isinf
#undef isnan
在使用的isnan前加上std::即可。
‘isnan’ was not declared in this scope
isnan在cmath中被取消宏定义
// These are possible macros imported from C99-land.
#undef fpclassify
#undef isfinite
#undef isinf
#undef isnan
在使用的isnan前加上std::即可。