Fixed warnings in ue RRC due to memsetting non-trivial structures.

This commit is contained in:
Pedro Alvarez 2019-04-16 11:47:46 +01:00 committed by Andre Puschmann
parent 5dd76479a0
commit 63852c5b87
1 changed files with 4 additions and 4 deletions

View File

@ -62,10 +62,10 @@ rrc::rrc() :
go_idle = false;
go_rlf = false;
ZERO_OBJECT(current_mac_cfg);
ZERO_OBJECT(previous_mac_cfg);
ZERO_OBJECT(current_phy_cfg);
ZERO_OBJECT(previous_phy_cfg);
current_mac_cfg = {};
previous_mac_cfg = {};
current_phy_cfg = {};
previous_phy_cfg = {};
}
rrc::~rrc()