summaryrefslogtreecommitdiff
path: root/pubkey.h
diff options
context:
space:
mode:
authorweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2003-05-16 18:24:25 +0000
committerweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2003-05-16 18:24:25 +0000
commitfa629c20b4de24ad8cad55c81f85b7a4d9f7bd91 (patch)
treeb0387e5a0c6703baa7e4924795d22b4bb41fe1ef /pubkey.h
parentae515e0b4c86dd3309f8897f9bd4e7fedcd4588f (diff)
downloadcryptopp-fa629c20b4de24ad8cad55c81f85b7a4d9f7bd91.tar.gz
add missing typename
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@70 57ff6487-cd31-0410-9ec3-f628ee90f5f0
Diffstat (limited to 'pubkey.h')
-rw-r--r--pubkey.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/pubkey.h b/pubkey.h
index 41d9c7e..65619c1 100644
--- a/pubkey.h
+++ b/pubkey.h
@@ -359,7 +359,7 @@ template <class KEYS>
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 KEYS>
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;
};