| 119 | |
| 120 | template<class F> |
| 121 | void |
| 122 | static |
| 123 | grind_one( |
| 124 | string_view s, |
| 125 | storage_ptr sp, |
| 126 | F const& f, |
| 127 | const parse_options& po = parse_options()) |
| 128 | { |
| 129 | auto const jv = |
| 130 | from_string_test(s, sp, po); |
| 131 | f(jv, po); |
| 132 | } |
| 133 | |
| 134 | static |
| 135 | void |
nothing calls this directly
no test coverage detected