From 82c4eb38804e011cfd855bc9e292f7533bfe4c2f Mon Sep 17 00:00:00 2001 From: weidai Date: Thu, 6 Apr 2006 21:20:25 +0000 Subject: merge in changes by denis bider and fix compile on gcc 3.4.4 and MSVC 6 git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@219 57ff6487-cd31-0410-9ec3-f628ee90f5f0 --- filters.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'filters.h') diff --git a/filters.h b/filters.h index 8dc9c56..0b4fa74 100644 --- a/filters.h +++ b/filters.h @@ -420,8 +420,8 @@ public: unsigned int GetMaxWaitObjectCount() const { return m_target && GetPassWaitObjects() ? m_target->GetMaxWaitObjectCount() : 0; } - void GetWaitObjects(WaitObjectContainer &container) - { if (m_target && GetPassWaitObjects()) m_target->GetWaitObjects(container); } + void GetWaitObjects(WaitObjectContainer &container, CallStack const& callStack) + { if (m_target && GetPassWaitObjects()) m_target->GetWaitObjects(container, callStack); } private: BufferedTransformation *m_target; -- cgit v1.2.1