summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Support/SpecialCaseList.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/lib/Support/SpecialCaseList.cpp')
-rw-r--r--llvm/lib/Support/SpecialCaseList.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/llvm/lib/Support/SpecialCaseList.cpp b/llvm/lib/Support/SpecialCaseList.cpp
index 43824891af3..21e43c5e703 100644
--- a/llvm/lib/Support/SpecialCaseList.cpp
+++ b/llvm/lib/Support/SpecialCaseList.cpp
@@ -37,11 +37,6 @@ struct SpecialCaseList::Entry {
Entry() {}
Entry(Entry &&Other)
: Strings(std::move(Other.Strings)), RegEx(std::move(Other.RegEx)) {}
- Entry &operator=(Entry &&Other) {
- Strings = std::move(Other.Strings);
- RegEx = std::move(Other.RegEx);
- return *this;
- }
StringSet<> Strings;
std::unique_ptr<Regex> RegEx;
OpenPOWER on IntegriCloud