| 71 | atyp& rtrn_mref() { static atyp obj; obj.mtxt = "rtrn_mref"; return obj; } |
| 72 | atyp const* rtrn_cptr() { return new atyp{"rtrn_cptr"}; } |
| 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; } |
nothing calls this directly
no outgoing calls
no test coverage detected