| 16 | namespace json { |
| 17 | |
| 18 | string:: |
| 19 | string( |
| 20 | detail::key_t const&, |
| 21 | string_view s, |
| 22 | storage_ptr sp) |
| 23 | : sp_(std::move(sp)) |
| 24 | , impl_(detail::key_t{}, |
| 25 | s, sp_) |
| 26 | { |
| 27 | } |
| 28 | |
| 29 | string:: |
| 30 | string( |
nothing calls this directly
no outgoing calls
no test coverage detected