From bd48f19dd8931c871c9b79371ff68cf87d2ccc11 Mon Sep 17 00:00:00 2001 From: Fritz Elfert Date: Mon, 28 Jun 1999 23:51:15 +0000 Subject: Optimization for speed. --- lib/bufferarray.h | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'lib/bufferarray.h') diff --git a/lib/bufferarray.h b/lib/bufferarray.h index 089eb4e..4cb948e 100644 --- a/lib/bufferarray.h +++ b/lib/bufferarray.h @@ -5,19 +5,19 @@ class bufferStore; class bufferArray { -public: - bufferArray(); - bufferArray(const bufferArray &a); - ~bufferArray(); - void operator =(const bufferArray &a); + public: + bufferArray(); + bufferArray(const bufferArray &a); + ~bufferArray(); + void operator =(const bufferArray &a); - bool empty() const; - bufferStore popBuffer(); - void pushBuffer(const bufferStore& b); + bool empty() const; + bufferStore popBuffer(); + void pushBuffer(const bufferStore& b); private: - long len; - long lenAllocd; - bufferStore* buff; + long len; + long lenAllocd; + bufferStore* buff; }; inline bool bufferArray::empty() const { return len == 0; } -- cgit v1.2.3