mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
LibIPC: Silence a warning when compiling with gcc -O0
This commit is contained in:
@@ -127,7 +127,7 @@ bool Decoder::decode(Dictionary& dictionary)
|
||||
m_stream >> size;
|
||||
if (m_stream.handle_any_error())
|
||||
return false;
|
||||
if (size >= NumericLimits<i32>::max()) {
|
||||
if (size >= (size_t)NumericLimits<i32>::max()) {
|
||||
ASSERT_NOT_REACHED();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user