From def3c68ffa40d1a3b3d2c81de6581e5c518c32df Mon Sep 17 00:00:00 2001 From: david Date: Thu, 18 Jul 2002 22:31:53 +0000 Subject: [PATCH] Patch from Cameron Moore: * Rearranged member initializers to shut gcc -Wall up --- src/Cockpit/steam.cxx | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/src/Cockpit/steam.cxx b/src/Cockpit/steam.cxx index 39583312a..c947325ee 100644 --- a/src/Cockpit/steam.cxx +++ b/src/Cockpit/steam.cxx @@ -54,21 +54,22 @@ static bool isTied = false; //////////////////////////////////////////////////////////////////////// FGSteam::FGSteam () - : the_STATIC_inhg(29.92), + : the_ALT_ft(0.0), the_ALT_datum_mb(1013.0), - the_VSI_case(29.92), - the_VSI_fps(0.0), + the_TC_rad(0.0), + the_TC_std(0.0), + the_STATIC_inhg(29.92), the_VACUUM_inhg(0.0), - the_MH_err(0.0), + the_VSI_fps(0.0), + the_VSI_case(29.92), the_MH_deg(0.0), the_MH_degps(0.0), - the_DG_err(0.0), + the_MH_err(0.0), the_DG_deg(0.0), the_DG_degps(0.0), the_DG_inhg(0.0), - the_TC_rad(0.0), - the_TC_std(0.0), + the_DG_err(0.0), _UpdateTimePending(1000000) { } -- 2.39.5