| 3985 | std::unique_ptr<IGenerator<T>> m_generator; |
| 3986 | public: |
| 3987 | GeneratorWrapper(std::unique_ptr<IGenerator<T>> generator): |
| 3988 | m_generator(std::move(generator)) |
| 3989 | {} |
| 3990 | T const& get() const { |
| 3991 | return m_generator->get(); |
| 3992 | } |
nothing calls this directly
no outgoing calls
no test coverage detected