mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-04-15 05:32:21 +00:00
isnan() not std::isnan()
.. fixup last commit.
This commit is contained in:
@@ -526,7 +526,7 @@ bool qstringdescend(const QString &s1, const QString &s2) { return s1 > s2; }
|
||||
bool qstringascend(const QString &s1, const QString &s2) { return s1 < s2; }
|
||||
|
||||
double myisinf(double x) { return std::isinf(x); }
|
||||
double myisnan(double x) { return std::isnan(x); }
|
||||
double myisnan(double x) { return isnan(x); } // math.h
|
||||
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user