From 7d92da7e7231ddfd9921d3f4eb5e46ce233fafc3 Mon Sep 17 00:00:00 2001 From: Petr Machata Date: Fri, 20 Nov 2009 20:40:06 +0100 Subject: [PATCH] dwarflint: Fix some formatting. --- src/dwarflint/check_range_out_of_scope.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/dwarflint/check_range_out_of_scope.cc b/src/dwarflint/check_range_out_of_scope.cc index a1d7d577e..63132ecb7 100644 --- a/src/dwarflint/check_range_out_of_scope.cc +++ b/src/dwarflint/check_range_out_of_scope.cc @@ -78,7 +78,7 @@ check_range_out_of_scope::check_range_out_of_scope (dwarflint &lint) { if (my_ranges.size () != 0) wr_message (wh, cat (mc_impact_4, mc_info, mc_error)) - << ": both low_pc/high_pc pair and ranges present." + << "both low_pc/high_pc pair and ranges present." << std::endl; else my_ranges.push_back (std::make_pair (low_pc, high_pc)); @@ -125,12 +125,12 @@ check_range_out_of_scope::check_range_out_of_scope (dwarflint &lint) if (result.size > 0) { wr_error (wh) - << ": PC range " << cov::format_ranges (cov1) + << "PC range " << cov::format_ranges (cov1) << " is not a sub-range of containing scope." << std::endl; wr_error (wh_parent) - << ": in this context: " << cov::format_ranges (cov2) + << "in this context: " << cov::format_ranges (cov2) << std::endl; } @@ -176,14 +176,14 @@ check_range_out_of_scope::check_range_out_of_scope (dwarflint &lint) { runoff = true; wr_error (wh) - << ": attribute `" << pri::attr ((*at).first) + << "attribute `" << pri::attr ((*at).first) << "': PC range " << pri::range (start, end) << " outside containing scope." << std::endl; } } if (runoff) wr_error (wh_parent) - << ": in this context: " << cov::format_ranges (cov) + << "in this context: " << cov::format_ranges (cov) << '.' << std::endl; } } -- 2.47.3