Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions libcxx/docs/ReleaseNotes/22.rst
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@ Deprecations and Removals
Potentially breaking changes
----------------------------

- The algorithm for ``multi{map,set}::find`` has been modified, which doesn't guarantee that the first element is
returned. If code relies on the first element being returned from ``find`` it may be broken. To fix it use
``lower_bound`` or ``equal_range`` instead.

Announcements About Future Releases
-----------------------------------

Expand Down
Loading