summaryrefslogtreecommitdiffstats
path: root/llvm/unittests/ADT/SCCIteratorTest.cpp
diff options
context:
space:
mode:
authorDavid Blaikie <dblaikie@gmail.com>2015-03-03 19:29:11 +0000
committerDavid Blaikie <dblaikie@gmail.com>2015-03-03 19:29:11 +0000
commit8f655ef0415338b341602c144c0c8b1c471d2e81 (patch)
treef69c3334275fd8ba3e547fe6c3a88087f9a21081 /llvm/unittests/ADT/SCCIteratorTest.cpp
parent32abc6edac8fb7d4cb9472bf00246dba19d1d47b (diff)
downloadbcm5719-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.cpp2
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 {
OpenPOWER on IntegriCloud