OSDN Git Service

Remove explicit copy ctor in favor of the default so as not to disable/deprecate...
authorDavid Blaikie <dblaikie@gmail.com>
Tue, 3 Mar 2015 19:29:11 +0000 (19:29 +0000)
committerDavid Blaikie <dblaikie@gmail.com>
Tue, 3 Mar 2015 19:29:11 +0000 (19:29 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231108 91177308-0d34-0410-b5e6-96231b3b80d8

unittests/ADT/SCCIteratorTest.cpp

index 3f1ba1c..be52343 100644 (file)
@@ -39,8 +39,6 @@ public:
     NodeSubset() : Elements(0) {
       assert(N <= sizeof(BitVector)*CHAR_BIT && "Graph too big!");
     }
-    /// NodeSubset - Copy constructor.
-    NodeSubset(const NodeSubset &other) : Elements(other.Elements) {}
 
     /// Comparison operators.
     bool operator==(const NodeSubset &other) const {