| 20 | : m(new T(std::forward<Args>(args)...)) { |
| 21 | } |
| 22 | ~Pimpl() { |
| 23 | static_assert(0 < sizeof(T), "Pimpl error: Missing destructor in the pimpled class?"); |
| 24 | } |
| 25 | T* operator->() { |
| 26 | return m.get(); |
| 27 | } |
nothing calls this directly
no outgoing calls
no test coverage detected