Skip to content
Snippets Groups Projects
Commit a21ca24b authored by Nicolò Caruso's avatar Nicolò Caruso
Browse files

[Fix] Logdecoder fix, FollowerData AntennaAnglesLog missing default constructor

parent e9cc73ec
No related branches found
No related tags found
No related merge requests found
......@@ -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,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment