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.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/util/bitvector.h b/src/util/bitvector.h
index ab6d8b030..c5a690c03 100644
--- a/src/util/bitvector.h
+++ b/src/util/bitvector.h
@@ -118,11 +118,13 @@ class BitVector
/**
* Set bit at index 'i' to given value.
+ * Returns a reference to this bit-vector to allow for chaining.
+ *
* value: True to set bit to 1, and false to set it to 0.
*
* Note: Least significant bit is at index 0.
*/
- BitVector setBit(uint32_t i, bool value) const;
+ BitVector& setBit(uint32_t i, bool value);
/** Return true if bit at index 'i' is 1, and false otherwise. */
bool isBitSet(uint32_t i) const;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback