Revert "Remove the explicit SDNodeIterator::operator= in favor of the implicit default"
[oota-llvm.git] / unittests / ADT / DenseMapTest.cpp
index 97807771725d447064e90ba601f15e07afb13c08..f4979839c78d5392631a20284d2de0ad91756ea5 100644 (file)
@@ -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));
   }