From 6698a186066d6efb239fcfc13f296794b9d7dda2 Mon Sep 17 00:00:00 2001 From: weidai Date: Thu, 20 Mar 2003 20:39:59 +0000 Subject: fix warnings for VC7 and GCC --- rsa.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'rsa.cpp') diff --git a/rsa.cpp b/rsa.cpp index 9d690b95..62e95921 100644 --- a/rsa.cpp +++ b/rsa.cpp @@ -26,17 +26,17 @@ void RSA_TestInstantiations() RSASS::Verifier x3(x2); RSASS::Verifier x4(x2.GetKey()); RSASS::Verifier x5(x3); +#ifndef __MWERKS__ RSASS::Signer x6 = x2; + x3 = x2; + x6 = x2; +#endif RSAES::Encryptor x7(x2); #ifndef __GNUC__ RSAES::Encryptor x8(x3); #endif RSAES >::Encryptor x9(x2); - x6 = x2; -#ifndef __MWERKS__ - x3 = x2; -#endif x4 = x2.GetKey(); } #endif -- cgit v1.2.1