From 6f7b559ded7823ea957571018388f80f20e6039a Mon Sep 17 00:00:00 2001 From: weidai Date: Fri, 16 May 2003 18:24:25 +0000 Subject: [PATCH] add missing typename --- pubkey.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pubkey.h b/pubkey.h index 41d9c7ef..65619c1e 100644 --- a/pubkey.h +++ b/pubkey.h @@ -359,7 +359,7 @@ template class CRYPTOPP_NO_VTABLE PublicKeyCopier { public: - typedef KEYS::PublicKey KeyClass; + typedef typename KEYS::PublicKey KeyClass; virtual void CopyKeyInto(typename KEYS::PublicKey &key) const =0; }; @@ -368,7 +368,7 @@ template class CRYPTOPP_NO_VTABLE PrivateKeyCopier { public: - typedef KEYS::PrivateKey KeyClass; + typedef typename KEYS::PrivateKey KeyClass; virtual void CopyKeyInto(typename KEYS::PublicKey &key) const =0; virtual void CopyKeyInto(typename KEYS::PrivateKey &key) const =0; };