1
0
Fork 0

(svn r16617) -Cleanup: some incorrect indenting

release/1.0
rubidium 2009-06-21 20:57:01 +00:00
parent 2eca42f5be
commit acff607624
1 changed files with 9 additions and 9 deletions

View File

@ -102,7 +102,7 @@ static const uint64
TERM_GROUP2_EXIT2_block = 1ULL << 20, TERM_GROUP2_EXIT2_block = 1ULL << 20,
PRE_HELIPAD_block = 1ULL << 21, PRE_HELIPAD_block = 1ULL << 21,
/* blocks for new airports */ /* blocks for new airports */
TERM7_block = 1ULL << 22, TERM7_block = 1ULL << 22,
TERM8_block = 1ULL << 23, TERM8_block = 1ULL << 23,
TERM9_block = 1ULL << 24, TERM9_block = 1ULL << 24,
@ -116,7 +116,7 @@ static const uint64
RUNWAY_OUT2_block = 1ULL << 10, ///< note re-uses TAXIWAY_BUSY RUNWAY_OUT2_block = 1ULL << 10, ///< note re-uses TAXIWAY_BUSY
HELIPAD_GROUP_block = 1ULL << 13, ///< note re-uses AIRPORT_ENTRANCE HELIPAD_GROUP_block = 1ULL << 13, ///< note re-uses AIRPORT_ENTRANCE
OUT_WAY_block2 = 1ULL << 31, OUT_WAY_block2 = 1ULL << 31,
/* end of new blocks */ /* end of new blocks */
NOTHING_block = 1ULL << 30; NOTHING_block = 1ULL << 30;
@ -157,15 +157,15 @@ struct AirportFTAClass {
Year last_available Year last_available
); );
~AirportFTAClass(); ~AirportFTAClass();
const AirportMovingData *MovingData(byte position) const const AirportMovingData *MovingData(byte position) const
{ {
assert(position < nofelements); assert(position < nofelements);
return &moving_data[position]; return &moving_data[position];
} }
/** Is this airport available at this date? */ /** Is this airport available at this date? */
bool IsAvailable() const; bool IsAvailable() const;
const AirportMovingData *moving_data; const AirportMovingData *moving_data;