1
0
Fork 0

Fix flightProperties build.

This commit is contained in:
James Turner 2016-11-02 14:38:29 +00:00
parent 4ee8661eaa
commit 6382d20f68
2 changed files with 4 additions and 6 deletions

View file

@ -20,7 +20,7 @@
// //
// $Id$ // $Id$
#include <cmath> #include "config.h"
#include <FDM/flightProperties.hxx> #include <FDM/flightProperties.hxx>
@ -180,7 +180,7 @@ double FlightProperties::get_Psi_dot_degps() const
{ {
return _root->getDoubleValue("orientation/yaw-rate-degps"); return _root->getDoubleValue("orientation/yaw-rate-degps");
} }
double FlightProperties::get_Total_temperature() const double FlightProperties::get_Total_temperature() const
{ {
return 0.0; return 0.0;

View file

@ -23,11 +23,9 @@
#ifndef FG_FLIGHT_PROPERTIES_HXX #ifndef FG_FLIGHT_PROPERTIES_HXX
#define FG_FLIGHT_PROPERTIES_HXX #define FG_FLIGHT_PROPERTIES_HXX
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <cstring> #include <cstring>
#include <cmath>
#include <simgear/math/SGMathFwd.hxx> // for SGVec3d #include <simgear/math/SGMathFwd.hxx> // for SGVec3d
#include <simgear/math/SGMisc.hxx> #include <simgear/math/SGMisc.hxx>