numeric setting value display fix

This commit is contained in:
MihailRis
2024-04-28 19:03:54 +03:00
parent c3b5576c02
commit 788bd6bf0f
8 changed files with 13 additions and 12 deletions
+1 -1
View File
@@ -61,7 +61,7 @@ class Reader : public BasicParser {
} else if (identifier == "inf") {
handler.setValue(name, *dynamic::Value::of(INFINITY));
} else if (identifier == "nan") {
handler.setValue(name, *dynamic::Value::of(NAN));
handler.setValue(name, *dynamic::Value::of(NAN));
}
} else if (c == '"' || c == '\'') {
pos++;