From 5283f5059b14d63ed0ed54c8384890320fbb9ec6 Mon Sep 17 00:00:00 2001 From: weidai Date: Sat, 19 Jun 2004 08:28:09 +0000 Subject: port to GCC 3.4 git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@168 57ff6487-cd31-0410-9ec3-f628ee90f5f0 --- algebra.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'algebra.cpp') diff --git a/algebra.cpp b/algebra.cpp index 222109a..6b20bf4 100644 --- a/algebra.cpp +++ b/algebra.cpp @@ -54,7 +54,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], Identity())) + while (!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.1