From 189ca7370762dca088a13d08ccb035e364758abb Mon Sep 17 00:00:00 2001 From: tron Date: Sat, 22 Jan 2005 20:23:18 +0000 Subject: (svn r1594) Convert all undefined parameter lists to (void) and add the appropriate warning flags in the Makefile --- town.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'town.h') diff --git a/town.h b/town.h index 7225e7747..046d0d892 100644 --- a/town.h +++ b/town.h @@ -73,15 +73,15 @@ struct Town { uint16 radius[5]; }; -uint32 GetWorldPopulation(); +uint32 GetWorldPopulation(void); void UpdateTownVirtCoord(Town *t); -void InitializeTown(); +void InitializeTown(void); void ShowTownViewWindow(uint town); void DeleteTown(Town *t); void ExpandTown(Town *t); bool GrowTown(Town *t); -Town *CreateRandomTown(); +Town *CreateRandomTown(void); enum { ROAD_REMOVE = 0, -- cgit v1.2.3-54-g00ecf