This commit is contained in:
MihailRis
2024-05-10 17:49:42 +03:00
parent 5a2bbb54c2
commit 3f8f34cf5d
2 changed files with 2 additions and 15 deletions
+2 -8
View File
@@ -36,14 +36,6 @@ inline void newline(
}
}
void stringify(
const Value& value,
std::stringstream& ss,
int indent,
const std::string& indentstr,
bool nice
);
void stringifyObj(
const Map* obj,
std::stringstream& ss,
@@ -91,6 +83,8 @@ void stringifyValue(
ss << *num;
} else if (auto str = std::get_if<std::string>(&value)) {
ss << util::escape(*str);
} else {
ss << "null";
}
}