mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2025-02-07 13:38:28 +00:00
Clear signed/unsigned warning in Debug
This commit is contained in:
parent
651563e6c2
commit
ba98c2bfb9
@ -182,7 +182,7 @@ void HuffmanDecoder::FillCacheEntry(LookupEntry &entry, code_t normalizedCode) c
|
||||
|
||||
inline unsigned int HuffmanDecoder::Decode(code_t code, /* out */ value_t &value) const
|
||||
{
|
||||
CRYPTOPP_ASSERT(((int)(code & m_cacheMask)) < m_cache.size());
|
||||
CRYPTOPP_ASSERT(((int)(code & m_cacheMask)) < (int)m_cache.size());
|
||||
LookupEntry &entry = m_cache[code & m_cacheMask];
|
||||
|
||||
code_t normalizedCode = 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user