From 96f85239a37b45c6a61a61adbcd7ed51673cee3f Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 3 Nov 2016 17:51:40 +0200 Subject: Adjust diag_record::os_ member name to os --- build2/diagnostics.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'build2/diagnostics.cxx') diff --git a/build2/diagnostics.cxx b/build2/diagnostics.cxx index 945632a..dfd792e 100644 --- a/build2/diagnostics.cxx +++ b/build2/diagnostics.cxx @@ -61,7 +61,7 @@ namespace build2 // if (!empty_ && (!std::uncaught_exception () || exception_unwinding_dtor)) { - *diag_stream << os_.str () << endl; + *diag_stream << os.str () << endl; if (epilogue_ != nullptr) epilogue_ (*this); // Can throw. @@ -74,7 +74,7 @@ namespace build2 void simple_prologue_base:: operator() (const diag_record& r) const { - stream_verb (r.os_, sverb_); + stream_verb (r.os, sverb_); if (type_ != nullptr) r << type_ << ": "; @@ -89,7 +89,7 @@ namespace build2 void location_prologue_base:: operator() (const diag_record& r) const { - stream_verb (r.os_, sverb_); + stream_verb (r.os, sverb_); r << *loc_.file << ':'; -- cgit v1.1