revert operator<< overload of dv::value

This commit is contained in:
MihailRis 2024-10-12 17:37:06 +03:00
parent d14548cff8
commit abe004c3d5

View File

@ -157,5 +157,5 @@ namespace dv {
#include "coders/json.hpp"
std::ostream& operator<<(std::ostream& stream, const dv::value& value) {
return stream << json::stringify(value, true);
return stream << json::stringify(value, false);
}