From 4ba2c755c3f8e6914bc19411b2b12218f92f8a2e Mon Sep 17 00:00:00 2001 From: qndel Date: Thu, 3 Jun 2021 01:23:48 +0200 Subject: [PATCH] attempt to fix CI (#2113) fix CI build --- Source/engine.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/engine.h b/Source/engine.h index 131cc281d..f712bfa94 100644 --- a/Source/engine.h +++ b/Source/engine.h @@ -205,7 +205,7 @@ struct Point { { Point offset = abs(*this - other); - return std::max(offset.x, offset.y); + return std::max(offset.x, offset.y); } };