summaryrefslogtreecommitdiff
path: root/lout/misc.hh
diff options
context:
space:
mode:
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 a0beb1b6..50c655eb 100644
--- a/lout/misc.hh
+++ b/lout/misc.hh
@@ -579,7 +579,7 @@ class BitSet
{
private:
unsigned char *bits;
- int numBytes;
+ int numBits, numBytes;
inline int bytesForBits(int bits) { return bits == 0 ? 1 : (bits + 7) / 8; }