Skip to content

Commit 5cd8957

Browse files
committed
fixup! fixup! [ADT] Add more useful methods to SmallSet API
1 parent ba09c04 commit 5cd8957

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/include/llvm/ADT/SmallSet.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ class SmallSet {
160160
insert(R.begin(), R.end());
161161
}
162162

163-
SmallSet(std::initializer_list<T> L) { this->insert(L.begin(), L.end()); }
163+
SmallSet(std::initializer_list<T> L) { insert(L.begin(), L.end()); }
164164

165165
SmallSet &operator=(const SmallSet &) = default;
166166
SmallSet &operator=(SmallSet &&) = default;

0 commit comments

Comments
 (0)