mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-30 08:53:08 +01:00
Fix another C++11ism
This commit is contained in:
parent
883f818626
commit
ec64112fb9
1 changed files with 1 additions and 1 deletions
|
|
@ -206,7 +206,7 @@ ALoudnessPresets::push_back (CLoudnessPreset const& clp)
|
|||
bool
|
||||
ALoudnessPresets::erase (CLoudnessPreset const& clp)
|
||||
{
|
||||
std::vector <ALoudnessPreset>::const_iterator i;
|
||||
std::vector <ALoudnessPreset>::iterator i;
|
||||
i = std::find (_p.begin (), _p.end(), clp);
|
||||
if (i == _p.end ()) {
|
||||
return false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue