aboutsummaryrefslogtreecommitdiff
path: root/build2/diagnostics.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-11-03 17:51:40 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-11-04 09:26:37 +0200
commit96f85239a37b45c6a61a61adbcd7ed51673cee3f (patch)
treed8a44777c19ff3f4a1bca01343a0e636ddad2f04 /build2/diagnostics.cxx
parent33e2f00fb710b2f63e9daa690c4eaad1e6eb3bad (diff)
Adjust diag_record::os_ member name to os
Diffstat (limited to 'build2/diagnostics.cxx')
-rw-r--r--build2/diagnostics.cxx6
1 files changed, 3 insertions, 3 deletions
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 << ':';