mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-10 23:46:20 +01:00
[Summary] Fix of mingw compiletion error
This commit is contained in:
parent
2a5f669c45
commit
a1844529e0
1 changed files with 2 additions and 2 deletions
|
|
@ -1619,8 +1619,8 @@ EditorRoutes::move_tracks_relatively (const PBD::ID& source_track_id, const PBD:
|
|||
}
|
||||
}
|
||||
|
||||
RouteList::const_iterator insert_position;
|
||||
for (RouteList::const_iterator iter = routes.begin(); iter != routes.end(); ++iter) {
|
||||
RouteList::iterator insert_position;
|
||||
for (RouteList::iterator iter = routes.begin(); iter != routes.end(); ++iter) {
|
||||
if ((*iter)->id() == target_track_id ) {
|
||||
insert_position = iter;
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue