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

@ -19,13 +19,15 @@ class LinkedVectorPacketImpl
{
public:
explicit LinkedVectorPacketImpl() :
packetCode_ {},
lengthOfBlock_ {},
valueOfVector_ {},
startI_ {},
startJ_ {},
packetCode_ {0},
lengthOfBlock_ {0},
valueOfVector_ {0},
startI_ {0},
startJ_ {0},
endI_ {},
endJ_ {} {};
endJ_ {}
{
}
~LinkedVectorPacketImpl() = default;
uint16_t packetCode_;