| 7528 | namespace Catch { |
| 7529 | |
| 7530 | ReporterConfig::ReporterConfig( IConfigPtr const& _fullConfig ) |
| 7531 | : m_stream( &_fullConfig->stream() ), m_fullConfig( _fullConfig ) {} |
| 7532 | |
| 7533 | ReporterConfig::ReporterConfig( IConfigPtr const& _fullConfig, std::ostream& _stream ) |
| 7534 | : m_stream( &_stream ), m_fullConfig( _fullConfig ) {} |
nothing calls this directly
no outgoing calls
no test coverage detected