fix invalid mapping detection
[ardour.git] / libs / ardour / cycle_timer.cc
index 84dafd00cc30a6b0498772fb4cd3c98acf446aad..a86124c5555901b4f4e1f413222c6ff07dac4928 100644 (file)
@@ -85,8 +85,8 @@ StoringTimer::StoringTimer (int N)
        _max_points = N;
        _points = 0;
 }
-       
 
+#ifndef NDEBUG
 void
 StoringTimer::dump (string const & file)
 {
@@ -98,6 +98,7 @@ StoringTimer::dump (string const & file)
                f << _point[i] << " " << _ref[i] << " " << _value[i] << "\n";
        }
 }
+#endif
 
 void
 StoringTimer::ref ()
@@ -114,11 +115,11 @@ StoringTimer::check (int p)
        } else if (_points > _max_points) {
                return;
        }
-       
+
        _point[_points] = p;
        _value[_points] = get_cycles ();
        _ref[_points] = _current_ref;
-       
+
        ++_points;
 }