Hi,
std::multimap::find(key), std::multiset::find(key) used to return the first element equal to `key`. libc++ is changing so that it now returns any arbitrary element equal to key.
If you know of code that:
* Uses std::multimap or std::multiset
* Calls find() on it
* Iterates over the result
please check that it still works when find() returns an arbitrary matching element. (If not, switch to lower_bound() or equal_range().)
I tried going through all our code and fixing issues, but it's possible I missed something. (I did update everything covered by tests failing with the new libc++ revision.)
Thanks,
Nico