From bfed3f5d4280e9f882bbaf2b90b347e8574ac8cb Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 31 May 2023 01:16:15 +0200 Subject: [PATCH] NO-OP: white-space --- libs/ardour/playlist.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libs/ardour/playlist.cc b/libs/ardour/playlist.cc index 082ea87d5f..303ef9186a 100644 --- a/libs/ardour/playlist.cc +++ b/libs/ardour/playlist.cc @@ -1752,7 +1752,7 @@ FINDING THINGS std::shared_ptr Playlist::region_list () { - RegionReadLock rlock (this); + RegionReadLock rlock (this); std::shared_ptr rlist (new RegionList (regions.rlist ())); return rlist; } @@ -1913,7 +1913,7 @@ Playlist::find_regions_at (timepos_t const & pos) std::shared_ptr Playlist::regions_with_start_within (Temporal::Range range) { - RegionReadLock rlock (this); + RegionReadLock rlock (this); std::shared_ptr rlist (new RegionList); for (auto & r : regions) { @@ -1928,7 +1928,7 @@ Playlist::regions_with_start_within (Temporal::Range range) std::shared_ptr Playlist::regions_with_end_within (Temporal::Range range) { - RegionReadLock rlock (this); + RegionReadLock rlock (this); std::shared_ptr rlist (new RegionList); for (auto & r : regions) { @@ -2022,7 +2022,7 @@ Playlist::find_next_transient (timepos_t const & from, int dir) std::shared_ptr Playlist::find_next_region (timepos_t const & pos, RegionPoint point, int dir) { - RegionReadLock rlock (this); + RegionReadLock rlock (this); std::shared_ptr ret; timecnt_t closest = timecnt_t::max (pos.time_domain());