From baa3a346cde2c2c965243e554a15ed3bd6f5c7fe Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Wed, 16 Apr 2025 15:51:58 +1200 Subject: Code style improvements, constants marked as constant --- src/pathfinding.ads | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/pathfinding.ads') diff --git a/src/pathfinding.ads b/src/pathfinding.ads index 624c5d6..eec079f 100644 --- a/src/pathfinding.ads +++ b/src/pathfinding.ads @@ -16,8 +16,9 @@ package Pathfinding is SX, SY : in Integer; FX, FY : in Integer) return Moves.Path - with Pre => My_Grid.In_Bounds (SX, SY); + with Pre => My_Grid.In_Bounds (SX, SY); end Pathfinding; + -- cgit