From 2f73654b742d2a446d2f5b2bacebda7d9b9cf457 Mon Sep 17 00:00:00 2001 From: Kartik Agaram <vc@akkartik.com> Date: Tue, 2 Oct 2018 21:06:46 -0700 Subject: 4656 --- transect/003trace.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'transect') diff --git a/transect/003trace.cc b/transect/003trace.cc index fcbf26c0..3b4ae596 100644 --- a/transect/003trace.cc +++ b/transect/003trace.cc @@ -163,9 +163,8 @@ string trace_stream::readable_contents(string label) { ostringstream output; label = trim(label); for (vector<trace_line>::iterator p = past_lines.begin(); p != past_lines.end(); ++p) - if (label.empty() || label == p->label) { + if (label.empty() || label == p->label) output << std::setw(4) << p->depth << ' ' << p->label << ": " << p->contents << '\n'; - } return output.str(); } -- cgit 1.4.1-2-gfad0