There was an error while loading. Please reload this page.
1 parent 184b291 commit 6ea7815Copy full SHA for 6ea7815
1 file changed
src/simu5g/stack/phy/packet/LteAirFrame.h
@@ -41,13 +41,7 @@ class LteAirFrame : public LteAirFrame_Base
41
{
42
LteAirFrame_Base::operator=(other);
43
this->remoteUnitPhyDataVector = other.remoteUnitPhyDataVector;
44
-
45
- // copy the attached control info, if any
46
- if (other.getControlInfo() != nullptr) {
47
- UserControlInfo *info = check_and_cast<UserControlInfo *>(other.getControlInfo());
48
- UserControlInfo *info_dup = info->dup();
49
- this->setControlInfo(info_dup);
50
- }
+ ASSERT(other.getControlInfo() == nullptr);
51
return *this;
52
}
53
0 commit comments