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

LibGfx: Convert Point to east-const style

This commit is contained in:
Andreas Kling 2021-06-16 19:24:27 +02:00
parent 243dfb3bdc
commit df0248b096
2 changed files with 26 additions and 26 deletions

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
* Copyright (c) 2020-2021, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
@ -13,7 +13,7 @@
namespace Gfx {
template<typename T>
void Point<T>::constrain(const Rect<T>& rect)
void Point<T>::constrain(Rect<T> const& rect)
{
if (x() < rect.left()) {
set_x(rect.left());
@ -44,7 +44,7 @@ String FloatPoint::to_string() const
namespace IPC {
bool encode(Encoder& encoder, const Gfx::IntPoint& point)
bool encode(Encoder& encoder, Gfx::IntPoint const& point)
{
encoder << point.x() << point.y();
return true;