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:
Andrew Kaster 2024-07-06 06:24:08 -06:00 committed by Daniel Bertalan
parent 34892cf3c4
commit fc7af577fc
Notes: sideshowbarker 2024-07-17 20:22:04 +09:00

View File

@ -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()