added linux fixes
This commit is contained in:
@@ -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<>
|
||||
|
||||
Reference in New Issue
Block a user