mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-19 04:32:19 +00:00
Remove explicit copy ctor in favor of the default so as not to disable/deprecate the implicit copy assignment operator
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231108 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6e274fd1ab
commit
f9a9c6f660
@ -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 {
|
||||
|
Loading…
x
Reference in New Issue
Block a user