Linux build fix

This commit is contained in:
Jack Andersen 2018-04-02 14:44:30 -10:00
parent 0756f4ec76
commit 34d13c15c1
1 changed files with 1 additions and 1 deletions

View File

@ -298,7 +298,7 @@ public:
inline bool isNotInf() const
{
return !(isinf(x) || isinf(y) || isinf(z));
return !(std::isinf(x) || std::isinf(y) || std::isinf(z));
}
inline bool isMagnitudeSafe() const