From b3e63d766ac3846675c46441ce37705770c065eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=93lafur=20Waage?= Date: Fri, 10 Sep 2021 10:54:44 +0200 Subject: [PATCH] Removing const from non reference argument --- test/testGhost.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testGhost.cpp b/test/testGhost.cpp index 9837ae2..3c63570 100644 --- a/test/testGhost.cpp +++ b/test/testGhost.cpp @@ -5,7 +5,7 @@ #include template -static void ghostInitHelper(const T& ghost, const double x, const double y) { +static void ghostInitHelper(const T& ghost, double x, double y) { const pacman::Position pos{ x, y }; EXPECT_EQ(ghost.position(), pos);