mirror of https://github.com/OpenTTD/OpenTTD
Codefix 3fde611012: AirportMovingDataFlag should be `enum class`
`AirportMovingDataFlag` was changed to use `enum class` naming style, but wasn't actually changed to be `enum class`.pull/14435/head
parent
9ce2aca949
commit
6a880d8f26
|
@ -44,7 +44,7 @@ enum AirportTypes : uint8_t {
|
||||||
};
|
};
|
||||||
|
|
||||||
/** Flags for airport movement data. */
|
/** Flags for airport movement data. */
|
||||||
enum AirportMovingDataFlag : uint8_t {
|
enum class AirportMovingDataFlag : uint8_t {
|
||||||
NoSpeedClamp, ///< No speed restrictions.
|
NoSpeedClamp, ///< No speed restrictions.
|
||||||
Takeoff, ///< Takeoff movement.
|
Takeoff, ///< Takeoff movement.
|
||||||
SlowTurn, ///< Turn slowly (mostly used in the air).
|
SlowTurn, ///< Turn slowly (mostly used in the air).
|
||||||
|
|
Loading…
Reference in New Issue