summaryrefslogtreecommitdiff
path: root/queue.h
diff options
context:
space:
mode:
authorweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2003-10-14 01:25:28 +0000
committerweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2003-10-14 01:25:28 +0000
commit2ddf50a5761451d0383d380abb0a89505f62f0be (patch)
treeeda6d83abd4472bb82bfb58abfbda79ea13b9431 /queue.h
parent1827e89c3a73ec8bec11820df4899aefc92e6db5 (diff)
downloadcryptopp-2ddf50a5761451d0383d380abb0a89505f62f0be.tar.gz
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
Diffstat (limited to 'queue.h')
-rw-r--r--queue.h4
1 files changed, 2 insertions, 2 deletions
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<BufferedTransformation>
{
public:
- ByteQueue(unsigned int m_nodeSize=0);
+ ByteQueue(unsigned int nodeSize=0);
ByteQueue(const ByteQueue &copy);
~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;