diff options
author | Jedidiah Barber <contact@jedbarber.id.au> | 2025-04-18 01:35:24 +1200 |
---|---|---|
committer | Jedidiah Barber <contact@jedbarber.id.au> | 2025-04-18 01:35:24 +1200 |
commit | ce2ba2c8bdd7070d7688eff83173b6725c0fe657 (patch) | |
tree | 026c4400e98a6cbe1398cb74e6e69f0362a74a2d /src/misc.ads | |
parent | bc8980572f139e3a6ad62d476d65d2a74f0f4d1b (diff) |
Removed pointless Min/Max functions
Diffstat (limited to 'src/misc.ads')
-rw-r--r-- | src/misc.ads | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/misc.ads b/src/misc.ads index 679f3f5..7108f63 100644 --- a/src/misc.ads +++ b/src/misc.ads @@ -15,16 +15,10 @@ private with package Misc is - Origin, Image_Path, Level_Path : constant String; - + pragma Elaborate_Body; - function Max - (A, B : in Integer) - return Integer; - function Min - (A, B : in Integer) - return Integer; + Origin, Image_Path, Level_Path : constant String; private |