summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-07-25 01:47:18 +0000
committerCarl Hetherington <carl@carlh.net>2010-07-25 01:47:18 +0000
commit93a3b1a22189fa936a88b14bca4834af1c499330 (patch)
tree1dab93cde2b54766bf9f029a08569aceb1d40813 /libs
parentb06421c7e68aa299a5df066c86ab0494853c437c (diff)
Remove test that will never fire.
git-svn-id: svn://localhost/ardour2/branches/3.0@7489 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs')
-rw-r--r--libs/evoral/src/ControlList.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/libs/evoral/src/ControlList.cpp b/libs/evoral/src/ControlList.cpp
index 4a710cfbb0..78d0d2d845 100644
--- a/libs/evoral/src/ControlList.cpp
+++ b/libs/evoral/src/ControlList.cpp
@@ -1036,10 +1036,6 @@ ControlList::rt_safe_earliest_event_linear_unlocked (double start, double end, d
const ControlEvent* first = NULL;
const ControlEvent* next = NULL;
- /* No events past start (maybe?) */
- if (next && next->when < start)
- return false;
-
/* Step is after first */
if (range.first == _events.begin() || (*range.first)->when == start) {
first = *range.first;