From e0d32e0688c1bddbfba63f46e486c5ec6b79a9e6 Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Sun, 7 Oct 2012 08:38:33 +0000 Subject: CryptoPP compilation fixes for gcc 4.7 ( http://forum.mc-server.org/showthread.php?tid=520&pid=4829#pid4829 ) git-svn-id: http://mc-server.googlecode.com/svn/trunk@941 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- CryptoPP/algebra.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'CryptoPP/algebra.cpp') 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 const T& AbstractEuclideanDomain::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; -- cgit v1.2.3