diff options
author | Jorge Arellano Cid <jcid@dillo.org> | 2009-02-09 14:56:31 -0300 |
---|---|---|
committer | Jorge Arellano Cid <jcid@dillo.org> | 2009-02-09 14:56:31 -0300 |
commit | e32686c10a4f4fe7c34b181845220b5c491f32fb (patch) | |
tree | c090052c311a3a1732d03dc17fe357f97437b397 /lout/misc.hh | |
parent | 74f64426001a693759e47963f99965e0e6ee847d (diff) |
whitespace cleanup: 's/ +$//g'
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; |