summaryrefslogtreecommitdiffstats
path: root/CryptoPP/algebra.cpp
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-10-07 10:38:33 +0200
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-10-07 10:38:33 +0200
commite0d32e0688c1bddbfba63f46e486c5ec6b79a9e6 (patch)
tree4c7bc4a7ec4b8df482924089df00c9f3126ed13b /CryptoPP/algebra.cpp
parentSplit the name for signed and unsigned int writing in cProtocol. (diff)
downloadcuberite-e0d32e0688c1bddbfba63f46e486c5ec6b79a9e6.tar
cuberite-e0d32e0688c1bddbfba63f46e486c5ec6b79a9e6.tar.gz
cuberite-e0d32e0688c1bddbfba63f46e486c5ec6b79a9e6.tar.bz2
cuberite-e0d32e0688c1bddbfba63f46e486c5ec6b79a9e6.tar.lz
cuberite-e0d32e0688c1bddbfba63f46e486c5ec6b79a9e6.tar.xz
cuberite-e0d32e0688c1bddbfba63f46e486c5ec6b79a9e6.tar.zst
cuberite-e0d32e0688c1bddbfba63f46e486c5ec6b79a9e6.zip
Diffstat (limited to 'CryptoPP/algebra.cpp')
-rw-r--r--CryptoPP/algebra.cpp2
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;