From 014a83d2f53cd49bd2540c53ee56f26d880fe2f5 Mon Sep 17 00:00:00 2001 From: Sebastian Geerken Date: Tue, 27 Jan 2015 10:23:26 +0100 Subject: Some debugging code. --- lout/misc.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lout/misc.hh') 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; } -- cgit v1.2.3