LibGfx: Convert Size to east-const style

This commit is contained in:
Andreas Kling 2021-06-16 19:20:35 +02:00
commit bd9096c97d
Notes: sideshowbarker 2024-07-18 12:10:03 +09:00
2 changed files with 13 additions and 13 deletions

View file

@ -27,7 +27,7 @@ String FloatSize::to_string() const
namespace IPC {
bool encode(Encoder& encoder, const Gfx::IntSize& size)
bool encode(Encoder& encoder, Gfx::IntSize const& size)
{
encoder << size.width() << size.height();
return true;