| 36 | atyp_cref const& rtrn_cref() { static atyp_cref obj; obj.mtxt = "Cref"; return obj; } |
| 37 | atyp_mref& rtrn_mref() { static atyp_mref obj; obj.mtxt = "Mref"; return obj; } |
| 38 | atyp_cptr const* rtrn_cptr() { return new atyp_cptr{"Cptr"}; } |
| 39 | atyp_mptr* rtrn_mptr() { return new atyp_mptr{"Mptr"}; } |
| 40 | |
| 41 | std::shared_ptr<atyp_shmp> rtrn_shmp() { return std::make_shared<atyp_shmp>(atyp_shmp{"Shmp"}); } |
nothing calls this directly
no outgoing calls
no test coverage detected