projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
95b14b0
)
Remove move assignment operator to appease older GCCs.
author
Peter Collingbourne
<peter@pcc.me.uk>
Thu, 10 Jul 2014 04:39:40 +0000
(
04:39
+0000)
committer
Peter Collingbourne
<peter@pcc.me.uk>
Thu, 10 Jul 2014 04:39:40 +0000
(
04:39
+0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@212682
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Support/SpecialCaseList.cpp
patch
|
blob
|
history
diff --git
a/lib/Support/SpecialCaseList.cpp
b/lib/Support/SpecialCaseList.cpp
index
4382489
..
21e43c5
100644
(file)
--- a/
lib/Support/SpecialCaseList.cpp
+++ b/
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;