mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-31 10:57:43 +01:00
Yet another C++11ism
This commit is contained in:
parent
9c2bb240af
commit
e511ee968e
1 changed files with 1 additions and 1 deletions
|
|
@ -608,7 +608,7 @@ IOButton::maybe_add_bundle_to_menu (boost::shared_ptr<Bundle> b, ARDOUR::BundleL
|
|||
}
|
||||
|
||||
/* Avoid adding duplicates */
|
||||
list<boost::shared_ptr<Bundle>>::iterator i = _menu_bundles.begin ();
|
||||
list<boost::shared_ptr<Bundle> >::iterator i = _menu_bundles.begin ();
|
||||
while (i != _menu_bundles.end () && b->has_same_ports (*i) == false) {
|
||||
++i;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue