diff --git a/lib/Support/SpecialCaseList.cpp b/lib/Support/SpecialCaseList.cpp index 43824891af3..21e43c5e703 100644 --- a/lib/Support/SpecialCaseList.cpp +++ b/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;