| 8716 | namespace Catch { |
| 8717 | |
| 8718 | ReporterConfig::ReporterConfig( IConfigPtr const& _fullConfig ) |
| 8719 | : m_stream( &_fullConfig->stream() ), m_fullConfig( _fullConfig ) {} |
| 8720 | |
| 8721 | ReporterConfig::ReporterConfig( IConfigPtr const& _fullConfig, std::ostream& _stream ) |
| 8722 | : m_stream( &_stream ), m_fullConfig( _fullConfig ) {} |
nothing calls this directly
no outgoing calls
no test coverage detected