From 4169bfba0604b33bad92389bd3eb6f9acde89f49 Mon Sep 17 00:00:00 2001 From: rubidium Date: Wed, 7 Mar 2007 11:47:46 +0000 Subject: (svn r9050) -Codechange: Foo(void) -> Foo() --- src/order.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/order.h') diff --git a/src/order.h b/src/order.h index 64d39d586..44c7347b8 100644 --- a/src/order.h +++ b/src/order.h @@ -116,7 +116,7 @@ VARDEF BackuppedOrders _backup_orders_data[1]; DECLARE_OLD_POOL(Order, Order, 6, 1000) -static inline VehicleOrderID GetMaxOrderIndex(void) +static inline VehicleOrderID GetMaxOrderIndex() { /* TODO - This isn't the real content of the function, but * with the new pool-system this will be replaced with one that @@ -126,7 +126,7 @@ static inline VehicleOrderID GetMaxOrderIndex(void) return GetOrderPoolSize() - 1; } -static inline VehicleOrderID GetNumOrders(void) +static inline VehicleOrderID GetNumOrders() { return GetOrderPoolSize(); } -- cgit v1.2.3-54-g00ecf