From 3197f334d1b0bf025c0255e00c70d4ac2d1c5710 Mon Sep 17 00:00:00 2001 From: Corentin Jabot Date: Mon, 5 Jul 2021 17:19:35 +0200 Subject: [PATCH] Fix linux build --- lib/include/Position.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/include/Position.hpp b/lib/include/Position.hpp index 63e7d7c..19eb44d 100644 --- a/lib/include/Position.hpp +++ b/lib/include/Position.hpp @@ -34,4 +34,8 @@ inline bool operator!=(const Position & a, const Position & b) { return !(a == b); } +inline bool operator!=(const GridPosition & a, const GridPosition & b) { + return !(a == b); +} + } // namespace pacman