From ec56662ba7b4cfaf1335a88854127fac06f376aa 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 git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@43 57ff6487-cd31-0410-9ec3-f628ee90f5f0 --- rsa.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'rsa.cpp') diff --git a/rsa.cpp b/rsa.cpp index 9d690b9..62e9592 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