(svn r24541) -Cleanup [FS#5260]: remove unused function GetGroupArraySize (juanjo)

This commit is contained in:
yexo 2012-09-21 20:31:42 +00:00
parent 5add39d560
commit b490d5ceab
1 changed files with 0 additions and 12 deletions

View File

@ -94,18 +94,6 @@ static inline bool IsAllGroupID(GroupID id_g)
#define FOR_ALL_GROUPS_FROM(var, start) FOR_ALL_ITEMS_FROM(Group, group_index, var, start)
#define FOR_ALL_GROUPS(var) FOR_ALL_GROUPS_FROM(var, 0)
/**
* Get the current size of the GroupPool
*/
static inline uint GetGroupArraySize()
{
const Group *g;
uint num = 0;
FOR_ALL_GROUPS(g) num++;
return num;
}
uint GetGroupNumEngines(CompanyID company, GroupID id_g, EngineID id_e);