From 2f3faf4b8a00d97aeaf57f46a5ff7193ffb19089 Mon Sep 17 00:00:00 2001 From: Durk Talsma Date: Fri, 3 Jun 2011 10:02:18 +0200 Subject: [PATCH] Compilation error fixes following merge with next. --- src/Airports/dynamics.cxx | 4 ++-- src/Airports/dynamics.hxx | 14 +++----------- 2 files changed, 5 insertions(+), 13 deletions(-) diff --git a/src/Airports/dynamics.cxx b/src/Airports/dynamics.cxx index 9cbf9f6fa..3d443d08f 100644 --- a/src/Airports/dynamics.cxx +++ b/src/Airports/dynamics.cxx @@ -52,8 +52,8 @@ using std::random_shuffle; FGAirportDynamics::FGAirportDynamics(FGAirport * ap): _ap(ap), rwyPrefs(ap), SIDs(ap), atisSequenceIndex(-1), - atisSequenceTimeStamp(0.0) - startupController(this); + atisSequenceTimeStamp(0.0), + startupController(this) { lastUpdate = 0; } diff --git a/src/Airports/dynamics.hxx b/src/Airports/dynamics.hxx index 3240f0938..d3dbedaa2 100644 --- a/src/Airports/dynamics.hxx +++ b/src/Airports/dynamics.hxx @@ -58,23 +58,15 @@ private: intVec freqTower; // intVec freqApproach; // -<<<<<<< HEAD:src/Airports/dynamics.hxx - string atisInformation; - - string chooseRunwayFallback(); - bool innerGetActiveRunway(const string &trafficType, int action, string &runway, double heading); - string chooseRwyByHeading(stringVec rwys, double heading); - - double elevation; - -======= int atisSequenceIndex; double atisSequenceTimeStamp; std::string chooseRunwayFallback(); bool innerGetActiveRunway(const std::string &trafficType, int action, std::string &runway, double heading); std::string chooseRwyByHeading(stringVec rwys, double heading); ->>>>>>> next:src/Airports/dynamics.hxx + + double elevation; + public: FGAirportDynamics(FGAirport* ap); ~FGAirportDynamics(); -- 2.39.2