| 45 | } |
| 46 | |
| 47 | bool stringfy_impl(SIMDjsonStringResult &sr) const { |
| 48 | sr.s = simdjson::minify(root_); |
| 49 | return true; |
| 50 | } |
| 51 | |
| 52 | bool prettify_impl(SIMDjsonStringResult &sr) const { |
| 53 | sr.s = simdjson::minify(root_); |
nothing calls this directly
no outgoing calls
no test coverage detected