diff options
Diffstat (limited to '')
-rw-r--r-- | CryptoPP/algebra.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CryptoPP/algebra.cpp b/CryptoPP/algebra.cpp index 78c3947b3..b8818e6af 100644 --- a/CryptoPP/algebra.cpp +++ b/CryptoPP/algebra.cpp @@ -58,7 +58,7 @@ template <class T> const T& AbstractEuclideanDomain<T>::Gcd(const Element &a, co Element g[3]={b, a}; unsigned int i0=0, i1=1, i2=2; - while (!Equal(g[i1], this->Identity())) + while (!this->Equal(g[i1], this->Identity())) { g[i2] = Mod(g[i0], g[i1]); unsigned int t = i0; i0 = i1; i1 = i2; i2 = t; |