From b83c4f2fa447d34a42afa72153a1e08a8aef7964 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Mon, 13 Jan 2020 22:47:50 +0100 Subject: [PATCH] Fix C++11ism --- libs/ardour/lua_api.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/ardour/lua_api.cc b/libs/ardour/lua_api.cc index f294cb3925..4715d405f2 100644 --- a/libs/ardour/lua_api.cc +++ b/libs/ardour/lua_api.cc @@ -1095,7 +1095,7 @@ LuaAPI::Rubberband::finalize () /* this is the same as RBEffect::finish, Filter::finish */ SourceList sl; - for (std::vector>::iterator i = _asrc.begin (); i != _asrc.end (); ++i) { + for (std::vector >::iterator i = _asrc.begin (); i != _asrc.end (); ++i) { boost::shared_ptr afs = boost::dynamic_pointer_cast (*i); assert (afs); afs->done_with_peakfile_writes (); @@ -1140,7 +1140,7 @@ void LuaAPI::Rubberband::cleanup (bool abort) { if (abort) { - for (std::vector>::iterator i = _asrc.begin (); i != _asrc.end (); ++i) { + for (std::vector >::iterator i = _asrc.begin (); i != _asrc.end (); ++i) { (*i)->mark_for_remove (); } }