diff options
Diffstat (limited to 'lout/misc.hh')
-rw-r--r-- | lout/misc.hh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lout/misc.hh b/lout/misc.hh index 730a47a4..aa32a4f5 100644 --- a/lout/misc.hh +++ b/lout/misc.hh @@ -51,7 +51,7 @@ class Comparable { public: virtual ~Comparable(); - + /** * \brief Compare two objects c1 and c2. * @@ -240,9 +240,9 @@ class BitSet private: unsigned char *bits; int numBytes; - + inline int bytesForBits(int bits) { return bits == 0 ? 1 : (bits + 7) / 8; } - + public: BitSet(int initBits); ~BitSet(); @@ -263,7 +263,7 @@ private: size_t poolSize, poolLimit, freeIdx; SimpleVector <char*> *pools; SimpleVector <char*> *bulk; - + public: ZoneAllocator (size_t poolSize) { this->poolSize = poolSize; |