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:
Robin Gareus 2016-07-08 21:31:52 +02:00
parent 97b1725023
commit ac923be7af
6 changed files with 6 additions and 6 deletions

View file

@ -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 {