Codefix: Compile warning with newer C++ compiler on MinGW. (#12689)

> template-id not allowed for constructor in C++20
master
Peter Nelson 1 month ago committed by GitHub
parent 26113e3622
commit 4940b6ff0b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -221,7 +221,7 @@ struct SpecializedStation : public BaseStation {
* Set station type correctly
* @param tile The base tile of the station.
*/
inline SpecializedStation<T, Tis_waypoint>(TileIndex tile) :
inline SpecializedStation(TileIndex tile) :
BaseStation(tile)
{
this->facilities = EXPECTED_FACIL;

@ -1100,7 +1100,7 @@ struct SpecializedVehicle : public Vehicle {
/**
* Set vehicle type correctly
*/
inline SpecializedVehicle<T, Type>() : Vehicle(Type)
inline SpecializedVehicle() : Vehicle(Type)
{
this->sprite_cache.sprite_seq.count = 1;
}

Loading…
Cancel
Save