From 2ddf50a5761451d0383d380abb0a89505f62f0be Mon Sep 17 00:00:00 2001 From: weidai Date: Tue, 14 Oct 2003 01:25:28 +0000 Subject: fix bug (found by Michael Hunley) git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@134 57ff6487-cd31-0410-9ec3-f628ee90f5f0 --- queue.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'queue.h') diff --git a/queue.h b/queue.h index de91310..6c3b44e 100644 --- a/queue.h +++ b/queue.h @@ -16,7 +16,7 @@ class ByteQueueNode; class CRYPTOPP_DLL ByteQueue : public Bufferless { public: - ByteQueue(unsigned int m_nodeSize=0); + ByteQueue(unsigned int nodeSize=0); ByteQueue(const ByteQueue ©); ~ByteQueue(); @@ -39,7 +39,7 @@ public: unsigned int CopyRangeTo2(BufferedTransformation &target, unsigned long &begin, unsigned long end=ULONG_MAX, const std::string &channel=NULL_CHANNEL, bool blocking=true) const; // these member functions are not inherited - void SetNodeSize(unsigned int nodeSize) {m_nodeSize = nodeSize;} + void SetNodeSize(unsigned int nodeSize); unsigned long CurrentSize() const; bool IsEmpty() const; -- cgit v1.2.1