| 1437 | } |
| 1438 | |
| 1439 | explicit shared_string_ref(string_arena* a) noexcept |
| 1440 | : |
| 1441 | string_ref{ |
| 1442 | a->begin(), |
| 1443 | a->end(), |
| 1444 | string_ref::resource_management{©_construct, &move_construct, &destroy}, |
| 1445 | a |
| 1446 | } |
| 1447 | { } |
| 1448 | |
| 1449 | const string_arena_base* get_arena() const noexcept |
| 1450 | { |
nothing calls this directly
no test coverage detected