From fa629c20b4de24ad8cad55c81f85b7a4d9f7bd91 Mon Sep 17 00:00:00 2001 From: weidai Date: Fri, 16 May 2003 18:24:25 +0000 Subject: add missing typename git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@70 57ff6487-cd31-0410-9ec3-f628ee90f5f0 --- pubkey.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pubkey.h') diff --git a/pubkey.h b/pubkey.h index 41d9c7e..65619c1 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; }; -- cgit v1.2.1