From 93a3b1a22189fa936a88b14bca4834af1c499330 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 25 Jul 2010 01:47:18 +0000 Subject: [PATCH] Remove test that will never fire. git-svn-id: svn://localhost/ardour2/branches/3.0@7489 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/evoral/src/ControlList.cpp | 4 ---- 1 file changed, 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;