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

> template-id not allowed for constructor in C++20
This commit is contained in:
Peter Nelson 2024-05-16 12:09:19 +01:00 committed by GitHub
parent 26113e3622
commit 4940b6ff0b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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;
}