mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 22:50:05 +00:00
Zero initialize level 3 data fields
This commit is contained in:
parent
62429bdea7
commit
1fbb5e5387
14 changed files with 97 additions and 64 deletions
|
|
@ -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_;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue