[llvm] [ADT] Series of improvements to SmallSet (PR #104611)

Victor Campos via llvm-commits llvm-commits at lists.llvm.org
Mon Aug 19 03:38:59 PDT 2024


================
@@ -155,6 +150,22 @@ class SmallSet {
   using const_iterator = SmallSetIterator<T, N, C>;
 
   SmallSet() = default;
+  SmallSet(const SmallSet &) = default;
+  SmallSet(SmallSet &&) = default;
+
+  template <typename IterT> explicit SmallSet(IterT Begin, IterT End) {
----------------
vhscampos wrote:

Thanks. I will address your comments in the stack of PRs that I will create instead of the current single PR.

https://github.com/llvm/llvm-project/pull/104611


More information about the llvm-commits mailing list