| 23 | { |
| 24 | public: |
| 25 | NonCopyable() = default; |
| 26 | NonCopyable(const NonCopyable& x) = delete; // prevent copy construction |
| 27 | |
| 28 | friend std::ostream& operator<<(std::ostream& os, const NonCopyable& /*copyable*/) |
nothing calls this directly
no outgoing calls
no test coverage detected