| 118 | std::ptrdiff_t get_ptr(atyp const &obj) { return reinterpret_cast<std::ptrdiff_t>(&obj); } |
| 119 | |
| 120 | std::unique_ptr<atyp> unique_ptr_roundtrip(std::unique_ptr<atyp> obj) { return obj; } |
| 121 | |
| 122 | std::string pass_unique_ptr_cref(const std::unique_ptr<atyp> &obj) { return obj->mtxt; } |
| 123 |
nothing calls this directly
no outgoing calls
no test coverage detected