1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00

Remove move assignment operator to appease older GCCs.

llvm-svn: 212682
This commit is contained in:
Peter Collingbourne 2014-07-10 04:39:40 +00:00
parent 7132367354
commit 2bc51dcbef

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;