diff --git a/src/sled/config.cc b/src/sled/config.cc index d719eab..6c81ba9 100644 --- a/src/sled/config.cc +++ b/src/sled/config.cc @@ -17,7 +17,10 @@ std::string Config::ToString() const { toml::value root = toml_; - return toml::format(root); + // format(const basic_value& v, std::size_t w = 80u, + // int fprec = std::numeric_limits::max_digits10, + // bool no_comment = false, bool force_inline = false) + return toml::format(root, 180u); } void