Skip to content
Merged
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
2 changes: 1 addition & 1 deletion llvm/include/llvm/ADT/StringSet.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class StringSet : public StringMap<std::nullopt_t, AllocatorTy> {
}

/// Check if the set contains the given \c key.
bool contains(StringRef key) const { return Base::FindKey(key) != -1; }
bool contains(StringRef key) const { return Base::contains(key); }
};

} // end namespace llvm
Expand Down