Explorar o código

fix compiler issues

Sven Czarnian %!s(int64=3) %!d(string=hai) anos
pai
achega
a08ac9b244
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      src/types/Inbound.cpp

+ 2 - 2
src/types/Inbound.cpp

@@ -280,9 +280,9 @@ void Inbound::predictETA(const EuroScopePlugIn::CRadarTarget& target, const Euro
     /* get the ground speed */
     Velocity groundspeed;
     if (0 == target.GetGS())
-        groundspeed = static_cast<double>(target.GetPosition().GetReportedGS()) * knot;
+        groundspeed = static_cast<float>(target.GetPosition().GetReportedGS()) * knot;
     else
-        groundspeed = static_cast<double>(target.GetGS()) * knot;
+        groundspeed = static_cast<float>(target.GetGS()) * knot;
 
     const auto& destination = gsl::at(this->m_arrivalRoute, this->m_nextStarWaypoint);
     Length distanceToNextWaypoint = 0_m;