summaryrefslogtreecommitdiff
path: root/src/util/bitvector.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/bitvector.h')
-rw-r--r--src/util/bitvector.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/util/bitvector.h b/src/util/bitvector.h
index 9438113cf..bb0099157 100644
--- a/src/util/bitvector.h
+++ b/src/util/bitvector.h
@@ -97,11 +97,6 @@ public:
return d_value != y.d_value;
}
- BitVector equals(const BitVector& y) const {
- CheckArgument(d_size == y.d_size, y);
- return d_value == y.d_value;
- }
-
BitVector concat (const BitVector& other) const {
return BitVector(d_size + other.d_size, (d_value.multiplyByPow2(other.d_size)) + other.d_value);
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback