diff options
author | David Blaikie <dblaikie@gmail.com> | 2015-03-03 19:29:11 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2015-03-03 19:29:11 +0000 |
commit | 8f655ef0415338b341602c144c0c8b1c471d2e81 (patch) | |
tree | f69c3334275fd8ba3e547fe6c3a88087f9a21081 /llvm/unittests/ADT/SCCIteratorTest.cpp | |
parent | 32abc6edac8fb7d4cb9472bf00246dba19d1d47b (diff) | |
download | bcm5719-llvm-8f655ef0415338b341602c144c0c8b1c471d2e81.tar.gz bcm5719-llvm-8f655ef0415338b341602c144c0c8b1c471d2e81.zip |
Remove explicit copy ctor in favor of the default so as not to disable/deprecate the implicit copy assignment operator
llvm-svn: 231108
Diffstat (limited to 'llvm/unittests/ADT/SCCIteratorTest.cpp')
-rw-r--r-- | llvm/unittests/ADT/SCCIteratorTest.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/unittests/ADT/SCCIteratorTest.cpp b/llvm/unittests/ADT/SCCIteratorTest.cpp index 3f1ba1c5843..be52343fbee 100644 --- a/llvm/unittests/ADT/SCCIteratorTest.cpp +++ b/llvm/unittests/ADT/SCCIteratorTest.cpp @@ -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 { |