mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-04-15 05:32:21 +00:00
VC2017/Qt 5.12.1 - Fix 64Bit Build Problem
... with windows / VC2017 / 64Bit the code does not build / cannot resolve a overwritten function when using QT 5.12.1 ... adding the newly introduced function similar to the other function resolves the compile problem
This commit is contained in:
@@ -243,6 +243,11 @@ geolocation GeoPointInterpolator::Interpolate(double distance)
|
||||
return DistancePointInterpolator::Interpolate(distance).togeolocation();
|
||||
}
|
||||
|
||||
bool GeoPointInterpolator::GetBracket(double &d0, double &d1)
|
||||
{
|
||||
return DistancePointInterpolator::GetBracket(d0, d1);
|
||||
}
|
||||
|
||||
void GeoPointInterpolator::Push(double distance, geolocation point)
|
||||
{
|
||||
DistancePointInterpolator::Push(distance, point.toxyz());
|
||||
|
||||
@@ -492,6 +492,7 @@ public:
|
||||
GeoPointInterpolator() : DistancePointInterpolator() {}
|
||||
|
||||
geolocation Interpolate(double distance);
|
||||
bool GetBracket(double &d0, double &d1);
|
||||
|
||||
void Push(double distance, geolocation point);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user