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

> template-id not allowed for constructor in C++20
pull/741/head
Peter Nelson 5 months 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 * Set station type correctly
* @param tile The base tile of the station. * @param tile The base tile of the station.
*/ */
inline SpecializedStation<T, Tis_waypoint>(TileIndex tile) : inline SpecializedStation(TileIndex tile) :
BaseStation(tile) BaseStation(tile)
{ {
this->facilities = EXPECTED_FACIL; this->facilities = EXPECTED_FACIL;

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

Loading…
Cancel
Save