From 9e38788ad3190478835a29c93e8605423ef6ff20 Mon Sep 17 00:00:00 2001 From: DoinLakeFlyer Date: Tue, 24 Mar 2020 10:12:50 -0700 Subject: [PATCH] Remove international char from comment causing compiles to fail --- src/ADSB/ADSBVehicle.h | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/ADSB/ADSBVehicle.h b/src/ADSB/ADSBVehicle.h index b51fa157a..c84c4fad8 100644 --- a/src/ADSB/ADSBVehicle.h +++ b/src/ADSB/ADSBVehicle.h @@ -67,12 +67,6 @@ signals: void alertChanged (); private: - /* According with Thomas Voß, we should be using 2 minutes for the time being - static constexpr qint64 expirationTimeoutMs = 5000; ///< timeout with no update in ms after which the vehicle is removed. - ///< AirMap sends updates for each vehicle every second. - */ - static constexpr qint64 expirationTimeoutMs = 120000; - uint32_t _icaoAddress; QString _callsign; QGeoCoordinate _coordinate; @@ -81,6 +75,9 @@ private: bool _alert; QElapsedTimer _lastUpdateTimer; + + static constexpr qint64 expirationTimeoutMs = 120000; ///< timeout with no update in ms after which the vehicle is removed. + ///< AirMap sends updates for each vehicle every second. }; Q_DECLARE_METATYPE(ADSBVehicle::VehicleInfo_t) -- 2.22.0