From 6e0a7f449969d588ab2fcd4159fa0030de073179 Mon Sep 17 00:00:00 2001 From: weidai Date: Mon, 16 Apr 2007 00:16:32 +0000 Subject: [PATCH] fix compile with ICC --- trunk/c5/elgamal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trunk/c5/elgamal.h b/trunk/c5/elgamal.h index ef778eaa..9afc30ee 100644 --- a/trunk/c5/elgamal.h +++ b/trunk/c5/elgamal.h @@ -78,7 +78,7 @@ template class ElGamalObjectImpl : public DL_ObjectImplBase, public ElGamalBase { public: - size_t FixedMaxPlaintextLength() const {return MaxPlaintextLength(FixedCiphertextLength());} + size_t FixedMaxPlaintextLength() const {return this->MaxPlaintextLength(FixedCiphertextLength());} size_t FixedCiphertextLength() const {return this->CiphertextLength(0);} const DL_GroupParameters_GFP & GetGroupParameters() const {return this->GetKey().GetGroupParameters();}