1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 08:24:58 +00:00

AK: Rename the const overload of FixedMemoryStream::bytes()

Due to overload resolutions rules, this simple code provokes a crash:

ReadonlyBytes readonly_bytes{};
FixedMemoryStream stream{readonly_bytes};
ReadonlyBytes give_them_back{stream.bytes()};
    // -> Panics on VERIFY(m_writing_enabled);
    // but this is fine:
auto bytes = static_cast<FixedMemoryStream const&>(*stream).bytes()

If we need to be explicit about it, let's rename the overload instead of
adding that `static_cast`.
This commit is contained in:
Lucas CHOLLET 2023-07-03 13:33:25 -04:00 committed by Sam Atkins
parent 66c9696687
commit 18b7ddd0b5
3 changed files with 3 additions and 3 deletions

View file

@ -114,7 +114,7 @@ Bytes FixedMemoryStream::bytes()
VERIFY(m_writing_enabled);
return m_bytes;
}
ReadonlyBytes FixedMemoryStream::bytes() const
ReadonlyBytes FixedMemoryStream::readonly_bytes() const
{
return m_bytes;
}