1
0
Fork 0

Compare commits

...

2 Commits

Author SHA1 Message Date
Peter Nelson 46a54166ff
Merge 686e04e274 into 7546c1acab 2025-07-14 08:03:53 +00:00
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. */ /** 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).