1
0
Fork 0

Fix windows build, hopefully.

This commit is contained in:
James Turner 2019-09-23 23:14:32 +01:00
parent 12cccf043a
commit fafc9e3e64
2 changed files with 4 additions and 5 deletions

View file

@ -291,7 +291,7 @@ void writeFlightPlanToKML(flightgear::FlightPlanRef fp)
writeGeodsToKML("FlightPlan", fullPath);
}
void writeGeodsToKML(const std::string &label, const SGGeodVec& geods)
void writeGeodsToKML(const std::string &label, const flightgear::SGGeodVec& geods)
{
if (global_lineStringOpen) {
endCurrentLineString();

View file

@ -8,13 +8,12 @@
#include <simgear/math/SGGeod.hxx>
#include <simgear/structure/SGSharedPtr.hxx>
typedef std::vector<SGGeod> SGGeodVec;
namespace flightgear
{
class FlightPlan;
typedef SGSharedPtr<FlightPlan> FlightPlanRef;
typedef std::vector<SGGeod> SGGeodVec;
}
namespace FGTestApi {
@ -49,7 +48,7 @@ bool runForTimeWithCheck(double t, RunCheck check);
void writeFlightPlanToKML(flightgear::FlightPlanRef fp);
void writeGeodsToKML(const std::string &label, const SGGeodVec& geods);
void writeGeodsToKML(const std::string &label, const flightgear::SGGeodVec& geods);
namespace tearDown {