Remove move assignment operator to appease older GCCs.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@212682 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Peter Collingbourne 2014-07-10 04:39:40 +00:00
parent 95b14b00da
commit 141d3e3015

View File

@ -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;