Bug-fix TB information erroneus order of initializion in LteSpectrumPhy::AddExpectedTb
--- a/src/lte/model/lte-spectrum-phy.cc Thu Dec 13 12:23:50 2012 +0100
+++ b/src/lte/model/lte-spectrum-phy.cc Thu Dec 13 15:06:22 2012 +0100
@@ -802,7 +802,7 @@
m_expectedTbs.erase (it);
}
// insert new entry
- tbInfo_t tbInfo = {ndi, size, mcs, map, harqId, 0.0, rv, downlink, false};
+ tbInfo_t tbInfo = {ndi, size, mcs, map, harqId, rv, 0.0, downlink, false};
m_expectedTbs.insert (std::pair<TbId_t, tbInfo_t> (tbId,tbInfo));
}