Zero initialize level 3 data fields

This commit is contained in:
Dan Paulat 2022-01-08 15:16:54 -06:00
parent 62429bdea7
commit 1fbb5e5387
14 changed files with 97 additions and 64 deletions

View file

@ -38,7 +38,10 @@ public:
iCenterOfSweep_ {0},
jCenterOfSweep_ {0},
scaleFactor_ {0},
dataSize_ {0} {};
radial_ {},
dataSize_ {0}
{
}
~RadialDataPacketImpl() = default;
uint16_t packetCode_;