summaryrefslogtreecommitdiff
path: root/dh.h
diff options
context:
space:
mode:
authorweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2002-11-19 20:44:40 +0000
committerweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2002-11-19 20:44:40 +0000
commit7c32afc0c2a23e39ea7fe3dce9c718c77f758bb7 (patch)
treee6892323cff57a9ed487d204231a5ccec3a3eac5 /dh.h
parent6ea2796d91ca021f7e8846a1dda8e83edf4b4420 (diff)
downloadcryptopp-7c32afc0c2a23e39ea7fe3dce9c718c77f758bb7.tar.gz
fixed to compile with Intel compiler
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@17 57ff6487-cd31-0410-9ec3-f628ee90f5f0
Diffstat (limited to 'dh.h')
-rw-r--r--dh.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/dh.h b/dh.h
index 5bfa3f8..2514333 100644
--- a/dh.h
+++ b/dh.h
@@ -33,7 +33,7 @@ public:
{m_groupParameters.Initialize(v1, v2);}
template <class T2, class T3>
- DH_Domain(RandomNumberGenerator &v1, const T2 &v2, const T2 &v3)
+ DH_Domain(RandomNumberGenerator &v1, const T2 &v2, const T3 &v3)
{m_groupParameters.Initialize(v1, v2, v3);}
template <class T2, class T3, class T4>
@@ -45,7 +45,7 @@ public:
{m_groupParameters.Initialize(v1, v2);}
template <class T1, class T2, class T3>
- DH_Domain(const T1 &v1, const T2 &v2, const T2 &v3)
+ DH_Domain(const T1 &v1, const T2 &v2, const T3 &v3)
{m_groupParameters.Initialize(v1, v2, v3);}
template <class T1, class T2, class T3, class T4>