From c7931f6f18d6797eb1d2d00bb00793ae8d571bd6 Mon Sep 17 00:00:00 2001 From: Phil Nash Date: Tue, 18 Jul 2017 08:35:41 +0100 Subject: [PATCH] Reuse ostringstream in XML reporter --- include/internal/catch_xmlwriter.hpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/include/internal/catch_xmlwriter.hpp b/include/internal/catch_xmlwriter.hpp index 35ae1648..2cd0b1c4 100644 --- a/include/internal/catch_xmlwriter.hpp +++ b/include/internal/catch_xmlwriter.hpp @@ -165,9 +165,10 @@ namespace Catch { template XmlWriter& writeAttribute( std::string const& name, T const& attribute ) { - std::ostringstream oss; - oss << attribute; - return writeAttribute( name, oss.str() ); + m_oss.clear(); + m_oss.str(std::string()); + m_oss << attribute; + return writeAttribute( name, m_oss.str() ); } XmlWriter& writeText( std::string const& text, bool indent = true ) { @@ -226,6 +227,7 @@ namespace Catch { std::vector m_tags; std::string m_indent; std::ostream& m_os; + std::ostringstream m_oss; }; }