| 7360 | namespace Catch { |
| 7361 | |
| 7362 | ReporterConfig::ReporterConfig(IConfigPtr const &_fullConfig) |
| 7363 | : m_stream(&_fullConfig->stream()), m_fullConfig(_fullConfig) { |
| 7364 | } |
| 7365 | |
| 7366 | ReporterConfig::ReporterConfig(IConfigPtr const &_fullConfig, std::ostream &_stream) |
| 7367 | : m_stream(&_stream), m_fullConfig(_fullConfig) { |
nothing calls this directly
no outgoing calls
no test coverage detected