Michael137 wrote: > > `std::set` or `llvm::UniqueVector` perhaps? > > > > `llvm::UniqueVector` looks like what we need, thanks! I might be wrong but I > think that `std::set` sorts the elements, while we want to preserve the > insertion order.
Ah yes missed the fact that you do t want them shuffled. Yea UniqueVector should do https://github.com/llvm/llvm-project/pull/165281 _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
