From e99038ea514a8703b170689d5a0730c8d2e542e7 Mon Sep 17 00:00:00 2001 From: Kartik Agaram Date: Mon, 18 Feb 2019 22:43:01 -0800 Subject: 4982 --- html/subx/003trace.cc.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'html/subx/003trace.cc.html') diff --git a/html/subx/003trace.cc.html b/html/subx/003trace.cc.html index 2ec5850f..9daafa34 100644 --- a/html/subx/003trace.cc.html +++ b/html/subx/003trace.cc.html @@ -333,7 +333,7 @@ if ('onhashchange' in window) { 274 } 275 276 if (line_exists_anywhere(label, contents)) { -277 cerr << "\nF - " << FUNCTION << "(" << FILE << ":" << LINE << "): line [" << label << ": " << contents << "] out of order in trace:\n"; +277 cerr << "\nF - " << FUNCTION << "(" << FILE << ":" << LINE << "): line [" << label << ": " << contents << "] out of order in trace:\n"; 278 DUMP(""); 279 } 280 else { @@ -369,12 +369,12 @@ if ('onhashchange' in window) { 310 return trace_count(label, ""); 311 } 312 -313 int trace_count(string label, string line) { +313 int trace_count(string label, string line) { 314 if (!Trace_stream) return 0; 315 long result = 0; 316 for (vector<trace_line>::iterator p = Trace_stream->past_lines.begin(); p != Trace_stream->past_lines.end(); ++p) { 317 if (label == p->label) { -318 if (line == "" || trim(line) == trim(p->contents)) +318 if (line == "" || trim(line) == trim(p->contents)) 319 ++result; 320 } 321 } @@ -393,8 +393,8 @@ if ('onhashchange' in window) { 334 return result; 335 } 336 -337 bool trace_doesnt_contain(string label, string line) { -338 return trace_count(label, line) == 0; +337 bool trace_doesnt_contain(string label, string line) { +338 return trace_count(label, line) == 0; 339 } 340 341 bool trace_doesnt_contain(string expected) { -- cgit 1.4.1-2-gfad0