| 89 | |
| 90 | std::string pass_uqmp(std::unique_ptr<atyp > obj) { return "pass_uqmp:" + obj->mtxt; } |
| 91 | std::string pass_uqcp(std::unique_ptr<atyp const> obj) { return "pass_uqcp:" + obj->mtxt; } |
| 92 | |
| 93 | struct sddm : std::default_delete<atyp > {}; |
| 94 | struct sddc : std::default_delete<atyp const> {}; |
nothing calls this directly
no outgoing calls
no test coverage detected