[R] make all customizations to meet strict standard of cran
This commit is contained in:
@@ -113,7 +113,7 @@ inline bool CheckNAN(T v) {
|
||||
#ifdef _MSC_VER
|
||||
return (_isnan(v) != 0);
|
||||
#else
|
||||
return isnan(v);
|
||||
return std::isnan(v);
|
||||
#endif
|
||||
}
|
||||
template<typename T>
|
||||
|
||||
Reference in New Issue
Block a user