Fix windows build, hopefully.
This commit is contained in:
parent
12cccf043a
commit
fafc9e3e64
2 changed files with 4 additions and 5 deletions
|
@ -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();
|
||||
|
|
|
@ -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 {
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue