aboutsummaryrefslogtreecommitdiff
path: root/src/misc.adb
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2025-04-18 01:35:24 +1200
committerJedidiah Barber <contact@jedbarber.id.au>2025-04-18 01:35:24 +1200
commitce2ba2c8bdd7070d7688eff83173b6725c0fe657 (patch)
tree026c4400e98a6cbe1398cb74e6e69f0362a74a2d /src/misc.adb
parentbc8980572f139e3a6ad62d476d65d2a74f0f4d1b (diff)
Removed pointless Min/Max functions
Diffstat (limited to 'src/misc.adb')
-rw-r--r--src/misc.adb23
1 files changed, 1 insertions, 22 deletions
diff --git a/src/misc.adb b/src/misc.adb
index 0a16450..009836c 100644
--- a/src/misc.adb
+++ b/src/misc.adb
@@ -9,28 +9,7 @@
package body Misc is
- function Max
- (A, B : in Integer)
- return Integer is
- begin
- if B > A then
- return B;
- else
- return A;
- end if;
- end Max;
-
-
- function Min
- (A, B : in Integer)
- return Integer is
- begin
- if B < A then
- return B;
- else
- return A;
- end if;
- end Min;
+ -- null
end Misc;