| 30 | } // anonymous namespace |
| 31 | |
| 32 | std::string Value::to_string(int indent) const { |
| 33 | std::string ostr; |
| 34 | writeto(ostr, indent); |
| 35 | return ostr; |
| 36 | } |
| 37 | |
| 38 | void Value::writeto_fpath(const char* fout_path, int indent) const { |
| 39 | auto str = to_string(indent); |
no outgoing calls