mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
AK: Ignore -Wstring-op-overflow in another ByteBuffer instance
gcc 14.1 from Fedora 40 likes to warn on this on aarch64.
This commit is contained in:
committed by
Daniel Bertalan
parent
34892cf3c4
commit
fc7af577fc
@@ -284,9 +284,12 @@ public:
|
||||
|
||||
void overwrite(size_t offset, void const* data, size_t data_size)
|
||||
{
|
||||
#pragma GCC diagnostic push
|
||||
#pragma GCC diagnostic ignored "-Wstringop-overflow"
|
||||
// make sure we're not told to write past the end
|
||||
VERIFY(offset + data_size <= size());
|
||||
__builtin_memmove(this->data() + offset, data, data_size);
|
||||
#pragma GCC diagnostic pop
|
||||
}
|
||||
|
||||
void zero_fill()
|
||||
|
||||
Reference in New Issue
Block a user