mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 23:35:03 +01:00
fix port-sort order for good.
TODO find out how to make std::set::find() work with custom sort order, as std::find may only be O(N) and not O(log (N)).
This commit is contained in:
parent
97b1725023
commit
ac923be7af
6 changed files with 6 additions and 6 deletions
|
|
@ -505,7 +505,7 @@ class CoreAudioBackend : public AudioBackend {
|
|||
}
|
||||
|
||||
bool valid_port (PortHandle port) const {
|
||||
return _ports.find (static_cast<CoreBackendPort*>(port)) != _ports.end ();
|
||||
return std::find (_ports.begin(), _ports.end(), static_cast<CoreBackendPort*>(port)) != _ports.end ();
|
||||
}
|
||||
|
||||
CoreBackendPort* find_port (const std::string& port_name) const {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue