(svn r9050) -Codechange: Foo(void) -> Foo()

This commit is contained in:
rubidium
2007-03-07 11:47:46 +00:00
parent 3e2fae03bd
commit 4169bfba06
180 changed files with 1072 additions and 1073 deletions

View File

@@ -155,7 +155,7 @@ bool Station::TileBelongsToRailStation(TileIndex tile) const
return IsTileType(tile, MP_STATION) && GetStationIndex(tile) == index && IsRailwayStation(tile);
}
/*static*/ Station *Station::AllocateRaw(void)
/*static*/ Station *Station::AllocateRaw()
{
Station *st = NULL;
@@ -467,7 +467,7 @@ RoadStop::~RoadStop()
/** Low-level function for allocating a RoadStop on the pool */
RoadStop *RoadStop::AllocateRaw( void )
RoadStop *RoadStop::AllocateRaw()
{
RoadStop *rs;