added linux fixes

This commit is contained in:
toni
2020-01-28 11:33:17 +01:00
parent 464e3c3614
commit 46aaef2b69
12 changed files with 28 additions and 23 deletions

View File

@@ -147,7 +147,7 @@ namespace Plotta
template<>
inline plottastream& operator<<(plottastream& stream, const float& value)
{
return stream << (isnan(value) ? "float(\"nan\")" : std::to_string(value));
return stream << (std::isnan(value) ? "float(\"nan\")" : std::to_string(value));
}
template<>