summaryrefslogtreecommitdiff
path: root/src/group.h
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2009-05-21 22:43:25 +0000
committersmatz <smatz@openttd.org>2009-05-21 22:43:25 +0000
commit6afce484bb9643510fbe51bd2127ed37961099a4 (patch)
treed3c5bfec1b9efe3edeb171b5db8554f742219a08 /src/group.h
parentc497e9e7edb2a891544450280e326c31a964d1a9 (diff)
downloadopenttd-6afce484bb9643510fbe51bd2127ed37961099a4.tar.xz
(svn r16373) -Codechange: use () instead of (void) for functions without parameters
Diffstat (limited to 'src/group.h')
-rw-r--r--src/group.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/group.h b/src/group.h
index b09da0a17..364514f56 100644
--- a/src/group.h
+++ b/src/group.h
@@ -51,7 +51,7 @@ static inline bool IsAllGroupID(GroupID id_g)
/**
* Get the current size of the GroupPool
*/
-static inline uint GetGroupArraySize(void)
+static inline uint GetGroupArraySize()
{
const Group *g;
uint num = 0;