| 24 | SpBase() = default; |
| 25 | SpBase(const SpBase &) = delete; |
| 26 | virtual ~SpBase() = default; |
| 27 | }; |
| 28 | |
| 29 | std::shared_ptr<SpBase> pass_through_shd_ptr(const std::shared_ptr<SpBase> &obj) { return obj; } |
nothing calls this directly
no outgoing calls
no test coverage detected