diff options
Diffstat (limited to 'src/station.cpp')
-rw-r--r-- | src/station.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/station.cpp b/src/station.cpp index 2338dfbbf..f75e2c2e7 100644 --- a/src/station.cpp +++ b/src/station.cpp @@ -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; |