diff options
author | Sebastian Geerken <devnull@localhost> | 2015-01-31 17:19:59 +0100 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2015-01-31 17:19:59 +0100 |
commit | 1ca300614dcf31eca1a971f2fbbcdd2a5ae81208 (patch) | |
tree | c800eac7d4543fff2f63e4d50045c91de288972f /lout/misc.hh | |
parent | 20be26d3698eeeeaf2c0a9e55a28831466fc0bd1 (diff) | |
parent | 014a83d2f53cd49bd2540c53ee56f26d880fe2f5 (diff) |
Merge with main repo.
Diffstat (limited to 'lout/misc.hh')
-rw-r--r-- | lout/misc.hh | 2 |
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; } |