| 88 | std::unique_ptr<atyp const> rtrn_uqcp() { return std::unique_ptr<atyp const>(new atyp{"rtrn_uqcp"}); } |
| 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 > {}; |
nothing calls this directly
no outgoing calls
no test coverage detected