From a21ca24b21265a3699e19590164b28c833ad33ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Caruso?= <niccolo.caruso@skywarder.eu> Date: Wed, 2 Oct 2024 16:06:50 +0200 Subject: [PATCH] [Fix] Logdecoder fix, FollowerData AntennaAnglesLog missing default constructor --- src/shared/algorithms/Follower/FollowerData.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/shared/algorithms/Follower/FollowerData.h b/src/shared/algorithms/Follower/FollowerData.h index 408e192a9..e30123af7 100644 --- a/src/shared/algorithms/Follower/FollowerData.h +++ b/src/shared/algorithms/Follower/FollowerData.h @@ -62,6 +62,7 @@ struct AntennaAnglesLog : public AntennaAngles uint32_t nrPropagations = 0; //!< Nr of propagations by the propagator (0 if no propagation) + AntennaAnglesLog() : AntennaAngles(), nrPropagations(0){}; AntennaAnglesLog(uint64_t timestamp, float yaw, float pitch) : AntennaAngles(timestamp, yaw, pitch), nrPropagations{0} {}; AntennaAnglesLog(uint64_t timestamp, float yaw, float pitch, -- GitLab