| 13 | class Pimpl { |
| 14 | public: |
| 15 | Pimpl(Pimpl<T>&& o) |
| 16 | : m(std::move(o.m)) { |
| 17 | } |
| 18 | template<typename ...Args> |
| 19 | Pimpl(Args&& ...args) |
| 20 | : m(new T(std::forward<Args>(args)...)) { |
nothing calls this directly
no outgoing calls
no test coverage detected