diff options
author | Sebastian Geerken <devnull@localhost> | 2015-01-27 10:23:26 +0100 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2015-01-27 10:23:26 +0100 |
commit | 014a83d2f53cd49bd2540c53ee56f26d880fe2f5 (patch) | |
tree | e805e55bd3a72085ee1d583a31e9c52438fc82c4 /lout/misc.hh | |
parent | cf52a2aee0600d4a568a3d68c6691280545bd11f (diff) |
Some debugging code.
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 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; } |