remove unused variable

This commit is contained in:
Francisco Paisana 2021-01-15 13:36:43 +00:00
parent d4242f2db7
commit 5391001c46
2 changed files with 1 additions and 2 deletions

View File

@ -34,7 +34,6 @@ struct sched_ue_cell {
const ue_cce_locations_table dci_locations;
private:
uint16_t rnti = SRSLTE_INVALID_RNTI;
const sched_interface::ue_cfg_t* ue_cfg = nullptr;
int ue_cc_idx = -1;
};

View File

@ -21,7 +21,7 @@ namespace srsenb {
*******************************************************/
sched_ue_cell::sched_ue_cell(uint16_t rnti_, const sched_cell_params_t& cell_cfg_) :
rnti(rnti_), cell_cfg(&cell_cfg_), dci_locations(generate_cce_location_table(rnti_, cell_cfg_))
cell_cfg(&cell_cfg_), dci_locations(generate_cce_location_table(rnti_, cell_cfg_))
{}
void sched_ue_cell::set_ue_cfg(const sched_interface::ue_cfg_t& ue_cfg_)