[AST] Add clarification comment

This commit is contained in:
Stephen Kelly 2021-04-22 12:51:25 +01:00
parent d2223c7a49
commit 5e50f473d9
1 changed files with 4 additions and 0 deletions

View File

@ -67,6 +67,10 @@ struct RangeLessThan {
} // namespace internal
// Note that this container stores unique results in a deterministic, but
// unspecified order. Clients which desire a particular order, such as
// alphabetical, should sort results after retrieval, because the order
// is dependent on how the LocationCalls are formatted.
template <typename T, typename U>
using UniqueMultiMap = std::set<std::pair<T, U>, internal::RangeLessThan>;