From cdb123974cd6657d4e8d47af9aef5a80d49f2810 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Fri, 30 Jan 2009 00:40:46 -0400 Subject: Created a new stream.h file for dealing with output streaming. --- src/xml.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/xml.h') diff --git a/src/xml.h b/src/xml.h index a8fa242e..6a9b4a08 100644 --- a/src/xml.h +++ b/src/xml.h @@ -93,8 +93,8 @@ public: const bool _show_totals = false) : format_entries(_report, ""), show_totals(_show_totals) { TRACE_CTOR(format_xml_entries, "std::ostream&, const bool"); - *report.output_stream << "\n" - << "\n"; + report.output_stream << "\n" + << "\n"; } virtual ~format_xml_entries() throw() { TRACE_DTOR(format_xml_entries); @@ -102,7 +102,7 @@ public: virtual void flush() { format_entries::flush(); - *report.output_stream << "" << std::endl; + report.output_stream << "" << std::endl; } virtual void format_last_entry(); -- cgit v1.2.3