================
@@ -475,10 +485,9 @@ class SymbolContextList {
   void GetDescription(Stream *s, lldb::DescriptionLevel level,
                       Target *target) const;
 
-protected:
-  typedef std::vector<SymbolContext>
-      collection; ///< The collection type for the list.
-  typedef collection::const_iterator const_iterator;
+private:
+  using collection = llvm::SetVector<SymbolContext, 
std::vector<SymbolContext>>;
----------------
Michael137 wrote:

```suggestion
  using collection = llvm::SetVector<SymbolContext, 
llvm::SmallVector<SymbolContext, 1>>;
```
?

https://github.com/llvm/llvm-project/pull/181952
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to