mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2024-11-23 09:59:42 +00:00
Clear C4742 warning using MSVC (GH #591)
This commit is contained in:
parent
2f1c984264
commit
53ccd310b8
@ -166,7 +166,8 @@ bool EqualityComparisonFilter::HandleMismatchDetected(bool blocking)
|
||||
m_mismatchDetected = true;
|
||||
if (m_throwIfNotEqual)
|
||||
throw MismatchDetected();
|
||||
return Output(1, (const byte *)"\0", 1, 0, blocking) != 0;
|
||||
const byte b[1] = {0};
|
||||
return Output(1, b, 1, 0, blocking) != 0;
|
||||
}
|
||||
|
||||
NAMESPACE_END
|
||||
|
Loading…
Reference in New Issue
Block a user