Cleared "signed/unsigned" warning under GCC 4.8 (this may have been a GCC 4.8/Debian-i686 issue because both types were unsigned)
parent
0be4110fe5
commit
4d5be2d690
|
|
@ -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<size_t>(BLOCKSIZE))
|
||||
return length;
|
||||
|
||||
struct Locals
|
||||
|
|
|
|||
Loading…
Reference in New Issue