forked from OSchip/llvm-project
Remove move assignment operator to appease older GCCs.
llvm-svn: 212682
This commit is contained in:
parent
202ecd26da
commit
8876c3face
|
@ -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