mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-12 13:30:51 +00:00
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:
parent
95b14b00da
commit
141d3e3015
@ -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