| 5458 | { |
| 5459 | struct ReporterConfig { |
| 5460 | explicit ReporterConfig( Ptr<IConfig const> const& _fullConfig ) |
| 5461 | : m_stream( &_fullConfig->stream() ), m_fullConfig( _fullConfig ) {} |
| 5462 | |
| 5463 | ReporterConfig( Ptr<IConfig const> const& _fullConfig, std::ostream& _stream ) |
| 5464 | : m_stream( &_stream ), m_fullConfig( _fullConfig ) {} |
nothing calls this directly
no outgoing calls
no test coverage detected