From 0c093bee3897433bb3cf0ee055aa301739a018b3 Mon Sep 17 00:00:00 2001 From: Phil Nash Date: Tue, 29 Nov 2016 12:13:55 +0000 Subject: [PATCH] Removed now redundant xml stream initialisation --- include/reporters/catch_reporter_xml.hpp | 1 - 1 file changed, 1 deletion(-) diff --git a/include/reporters/catch_reporter_xml.hpp b/include/reporters/catch_reporter_xml.hpp index 5a954740..40465f33 100644 --- a/include/reporters/catch_reporter_xml.hpp +++ b/include/reporters/catch_reporter_xml.hpp @@ -40,7 +40,6 @@ namespace Catch { virtual void testRunStarting( TestRunInfo const& testInfo ) CATCH_OVERRIDE { StreamingReporterBase::testRunStarting( testInfo ); - m_xml.setStream( stream ); m_xml.startElement( "Catch" ); if( !m_config->name().empty() ) m_xml.writeAttribute( "name", m_config->name() );