From 4d5be2d6901a6c1422510c783ed5808737640ba1 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Sun, 26 Jul 2015 01:14:59 -0400 Subject: [PATCH] Cleared "signed/unsigned" warning under GCC 4.8 (this may have been a GCC 4.8/Debian-i686 issue because both types were unsigned) --- rijndael.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rijndael.cpp b/rijndael.cpp index 5c5e4e37..cc4720ad 100644 --- a/rijndael.cpp +++ b/rijndael.cpp @@ -1193,7 +1193,7 @@ size_t Rijndael::Enc::AdvancedProcessBlocks(const byte *inBlocks, const byte *xo #if CRYPTOPP_BOOL_SSE2_ASM_AVAILABLE || defined(CRYPTOPP_X64_MASM_AVAILABLE) if (HasSSE2()) { - if (length < BLOCKSIZE) + if (length < static_cast(BLOCKSIZE)) return length; struct Locals