From 7d12c9fe36fa946dd98742fdf9389c3467494f1f Mon Sep 17 00:00:00 2001 From: Torsten Dreyer Date: Fri, 12 May 2017 09:22:41 +0200 Subject: [PATCH] Fix broken build due to undef'd ref in test_flightplan --- tests/testStubs.cxx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/testStubs.cxx b/tests/testStubs.cxx index 8411a136a..c646c9b44 100644 --- a/tests/testStubs.cxx +++ b/tests/testStubs.cxx @@ -104,6 +104,14 @@ bool FGScenery::get_elevation_m(const SGGeod& geod, double& alt, return false; } +bool FGScenery::get_cart_ground_intersection(const SGVec3d& start, const SGVec3d& dir, + SGVec3d& nearestHit, + const osg::Node* butNotFrom) +{ + return false; +} + + namespace flightgear { MessageBoxResult modalMessageBox(const std::string& caption,