about summary refs log tree commit diff stats
path: root/077trace_browser.cc
diff options
context:
space:
mode:
Diffstat (limited to '077trace_browser.cc')
-rw-r--r--077trace_browser.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/077trace_browser.cc b/077trace_browser.cc
index 297c3cee..74082bd6 100644
--- a/077trace_browser.cc
+++ b/077trace_browser.cc
@@ -97,10 +97,6 @@ void start_trace_browser() {
 //?       cerr << "min_depth is " << min_depth << '\n';
       long long int end_index = index;
 //?       cerr << "end_index is " << end_index << '\n';
-      // min_depth must be greater than the depths of the end-points
-      assert(min_depth > Trace_stream->past_lines.at(start_index).depth);
-      if (end_index < SIZE(Trace_stream->past_lines))
-        assert(min_depth > Trace_stream->past_lines.at(end_index).depth);
       // mark as visible all intervening indices at min_depth
       for (index = start_index; index < end_index; ++index) {
         trace_line& curr_line = Trace_stream->past_lines.at(index);