aboutsummaryrefslogtreecommitdiff
path: root/llvm/unittests/ADT/DenseMapTest.cpp
diff options
context:
space:
mode:
authorDavid Blaikie <dblaikie@gmail.com>2015-03-03 21:18:16 +0000
committerDavid Blaikie <dblaikie@gmail.com>2015-03-03 21:18:16 +0000
commit7f1e0565b32db8b0b82f78e680718a9703445bc8 (patch)
treeb817eb96d434fc174e04981179182da7de2b91a1 /llvm/unittests/ADT/DenseMapTest.cpp
parentbb8da4c08fbe6380195c61d134b149a4f4ade037 (diff)
downloadllvm-7f1e0565b32db8b0b82f78e680718a9703445bc8.zip
llvm-7f1e0565b32db8b0b82f78e680718a9703445bc8.tar.gz
llvm-7f1e0565b32db8b0b82f78e680718a9703445bc8.tar.bz2
Revert "Remove the explicit SDNodeIterator::operator= in favor of the implicit default"
Accidentally committed a few more of these cleanup changes than intended. Still breaking these out & tidying them up. This reverts commit r231135. llvm-svn: 231136
Diffstat (limited to 'llvm/unittests/ADT/DenseMapTest.cpp')
-rw-r--r--llvm/unittests/ADT/DenseMapTest.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/unittests/ADT/DenseMapTest.cpp b/llvm/unittests/ADT/DenseMapTest.cpp
index 9780777..f497983 100644
--- a/llvm/unittests/ADT/DenseMapTest.cpp
+++ b/llvm/unittests/ADT/DenseMapTest.cpp
@@ -46,7 +46,6 @@ public:
CtorTester(const CtorTester &Arg) : Value(Arg.Value) {
EXPECT_TRUE(Constructed.insert(this).second);
}
- CtorTester &operator=(const CtorTester &) = default;
~CtorTester() {
EXPECT_EQ(1u, Constructed.erase(this));
}