1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 13:28:11 +00:00

LibGfx: Convert Size to east-const style

This commit is contained in:
Andreas Kling 2021-06-16 19:20:35 +02:00
parent 3f57037ee7
commit bd9096c97d
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;