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:
parent
7132367354
commit
2bc51dcbef
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user