Cleared "signed/unsigned" warning under GCC 4.8 (this may have been a GCC 4.8/Debian-i686 issue because both types were unsigned)

pull/35/head
Jeffrey Walton 2015-07-26 01:14:59 -04:00
parent 0be4110fe5
commit 4d5be2d690
1 changed files with 1 additions and 1 deletions

View File

@ -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 CRYPTOPP_BOOL_SSE2_ASM_AVAILABLE || defined(CRYPTOPP_X64_MASM_AVAILABLE)
if (HasSSE2()) if (HasSSE2())
{ {
if (length < BLOCKSIZE) if (length < static_cast<size_t>(BLOCKSIZE))
return length; return length;
struct Locals struct Locals