forked from OSchip/llvm-project
[AST] Add clarification comment
This commit is contained in:
parent
d2223c7a49
commit
5e50f473d9
|
@ -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>;
|
||||
|
||||
|
|
Loading…
Reference in New Issue