Skip to content

[ADT] Remove old range constructors of SmallSet and StringSet #133205

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ class PrebuiltModuleListener : public ASTReaderListener {
bool ReadHeaderSearchPaths(const HeaderSearchOptions &HSOpts,
bool Complain) override {
std::vector<std::string> VFSOverlayFiles = HSOpts.VFSOverlayFiles;
PrebuiltModuleVFSMap.insert(
{CurrentFile, llvm::StringSet<>(VFSOverlayFiles)});
PrebuiltModuleVFSMap.try_emplace(CurrentFile, llvm::from_range,
VFSOverlayFiles);
return checkHeaderSearchPaths(
HSOpts, ExistingHSOpts, Complain ? &Diags : nullptr, ExistingLangOpts);
}
Expand Down
5 changes: 0 additions & 5 deletions llvm/include/llvm/ADT/SmallSet.h
Original file line number Diff line number Diff line change
Expand Up @@ -161,11 +161,6 @@ class SmallSet {
SmallSet(llvm::from_range_t, Range &&R)
: SmallSet(adl_begin(R), adl_end(R)) {}

template <typename RangeT>
explicit SmallSet(const iterator_range<RangeT> &R) {
insert(R.begin(), R.end());
}

SmallSet(std::initializer_list<T> L) { insert(L.begin(), L.end()); }

SmallSet &operator=(const SmallSet &) = default;
Expand Down
4 changes: 0 additions & 4 deletions llvm/include/llvm/ADT/StringSet.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,6 @@ class StringSet : public StringMap<std::nullopt_t, AllocatorTy> {
template <typename Range> StringSet(llvm::from_range_t, Range &&R) {
insert(adl_begin(R), adl_end(R));
}
template <typename Container> explicit StringSet(Container &&C) {
for (auto &&Str : C)
insert(Str);
}
explicit StringSet(AllocatorTy a) : Base(a) {}

std::pair<typename Base::iterator, bool> insert(StringRef key) {
Expand Down
7 changes: 0 additions & 7 deletions llvm/unittests/ADT/SmallSetTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,6 @@ TEST(SmallSetTest, ConstructorIteratorPair) {
EXPECT_THAT(S, testing::UnorderedElementsAreArray(L));
}

TEST(SmallSet, ConstructorRange) {
std::initializer_list<int> L = {1, 2, 3, 4, 5};

SmallSet<int, 4> S(llvm::make_range(std::begin(L), std::end(L)));
EXPECT_THAT(S, testing::UnorderedElementsAreArray(L));
}

TEST(SmallSet, ConstructorInitializerList) {
std::initializer_list<int> L = {1, 2, 3, 4, 5};
SmallSet<int, 4> S = {1, 2, 3, 4, 5};
Expand Down