| 73 | atyp* rtrn_mptr() { return new atyp{"rtrn_mptr"}; } |
| 74 | |
| 75 | std::string pass_valu(atyp obj) { return "pass_valu:" + obj.mtxt; } // NOLINT |
| 76 | std::string pass_cref(atyp const& obj) { return "pass_cref:" + obj.mtxt; } |
| 77 | std::string pass_mref(atyp& obj) { return "pass_mref:" + obj.mtxt; } |
| 78 | std::string pass_cptr(atyp const* obj) { return "pass_cptr:" + obj->mtxt; } |
nothing calls this directly
no outgoing calls
no test coverage detected