aboutsummaryrefslogtreecommitdiff
path: root/lout/misc.hh
diff options
context:
space:
mode:
authorSebastian Geerken <devnull@localhost>2015-01-31 17:19:59 +0100
committerSebastian Geerken <devnull@localhost>2015-01-31 17:19:59 +0100
commit1ca300614dcf31eca1a971f2fbbcdd2a5ae81208 (patch)
treec800eac7d4543fff2f63e4d50045c91de288972f /lout/misc.hh
parent20be26d3698eeeeaf2c0a9e55a28831466fc0bd1 (diff)
parent014a83d2f53cd49bd2540c53ee56f26d880fe2f5 (diff)
Merge with main repo.
Diffstat (limited to 'lout/misc.hh')
-rw-r--r--lout/misc.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/lout/misc.hh b/lout/misc.hh
index 1bc1c1de..18ac0802 100644
--- a/lout/misc.hh
+++ b/lout/misc.hh
@@ -581,7 +581,7 @@ class BitSet
{
private:
unsigned char *bits;
- int numBytes;
+ int numBits, numBytes;
inline int bytesForBits(int bits) { return bits == 0 ? 1 : (bits + 7) / 8; }