mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-24 06:07:29 +01:00
Fix yet another C++11ism
This commit is contained in:
parent
39110463f3
commit
a9c2350e87
1 changed files with 2 additions and 2 deletions
|
|
@ -167,7 +167,7 @@ ArdourMixerStrip::plugin (uint32_t plugin_id)
|
|||
throw ArdourMixerNotFoundException ("plugin id = " + boost::lexical_cast<std::string>(plugin_id) + " not found");
|
||||
}
|
||||
|
||||
return *_plugins.at (plugin_id);
|
||||
return *_plugins[plugin_id];
|
||||
}
|
||||
|
||||
ArdourMixerStrip::PluginMap&
|
||||
|
|
@ -313,7 +313,7 @@ ArdourMixer::strip (uint32_t strip_id)
|
|||
throw ArdourMixerNotFoundException ("strip id = " + boost::lexical_cast<std::string>(strip_id) + " not found");
|
||||
}
|
||||
|
||||
return *_strips.at (strip_id);
|
||||
return *_strips[strip_id];
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue