1
0
Fork 0

Compare commits

...

1 Commits

Author SHA1 Message Date
Peter Nelson 686e04e274
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`.
2025-07-13 08:29:54 +01:00
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ enum AirportTypes : uint8_t {
};
/** Flags for airport movement data. */
enum AirportMovingDataFlag : uint8_t {
enum class AirportMovingDataFlag : uint8_t {
NoSpeedClamp, ///< No speed restrictions.
Takeoff, ///< Takeoff movement.
SlowTurn, ///< Turn slowly (mostly used in the air).