mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-16 00:12:51 +00:00
Codefix: Compile warning with newer C++ compiler on MinGW. (#12689)
> template-id not allowed for constructor in C++20
This commit is contained in:
parent
26113e3622
commit
4940b6ff0b
@ -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…
Reference in New Issue
Block a user