From 72c18bab4395d340cdf458e4939c4cd5a34258c6 Mon Sep 17 00:00:00 2001 From: VladiMihaylenko Date: Tue, 17 Jul 2018 16:03:13 +0300 Subject: [PATCH] [routing] Removed assert from extrapolator. --- map/extrapolation/extrapolator.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/map/extrapolation/extrapolator.cpp b/map/extrapolation/extrapolator.cpp index d21bd37dcb..d0463e2c90 100644 --- a/map/extrapolation/extrapolator.cpp +++ b/map/extrapolation/extrapolator.cpp @@ -56,10 +56,7 @@ location::GpsInfo LinearExtrapolation(location::GpsInfo const & gpsInfo1, auto const timeBetweenPointsMs = static_cast((gpsInfo2.m_timestamp - gpsInfo1.m_timestamp) * 1000); if (timeBetweenPointsMs == 0) - { - ASSERT(false, ("Incorrect gps data")); return gpsInfo2; - } location::GpsInfo result = gpsInfo2; LinearExtrapolator const e(timeBetweenPointsMs, timeAfterPoint2Ms);