diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2014-07-10 04:39:40 +0000 |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2014-07-10 04:39:40 +0000 |
commit | 8876c3face0e6b0d0fa7cee476b308011fe9965e (patch) | |
tree | 3a7e7b266a1932e2f59f249361c0bdda4dccb97e /llvm/lib/Support/SpecialCaseList.cpp | |
parent | 202ecd26da6abd5d1a90ddef26023fc1048859b7 (diff) | |
download | bcm5719-llvm-8876c3face0e6b0d0fa7cee476b308011fe9965e.tar.gz bcm5719-llvm-8876c3face0e6b0d0fa7cee476b308011fe9965e.zip |
Remove move assignment operator to appease older GCCs.
llvm-svn: 212682
Diffstat (limited to 'llvm/lib/Support/SpecialCaseList.cpp')
-rw-r--r-- | llvm/lib/Support/SpecialCaseList.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/llvm/lib/Support/SpecialCaseList.cpp b/llvm/lib/Support/SpecialCaseList.cpp index 43824891af3..21e43c5e703 100644 --- a/llvm/lib/Support/SpecialCaseList.cpp +++ b/llvm/lib/Support/SpecialCaseList.cpp @@ -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; |