Remove auto for u16

This commit is contained in:
Xavier Arteaga 2020-03-10 09:19:24 +01:00 committed by Xavier Arteaga
parent 5311c37429
commit 04b3416d87
1 changed files with 1 additions and 1 deletions

View File

@ -393,7 +393,7 @@ int cc_worker::decode_pucch()
srslte_pucch_res_t pucch_res = {}; srslte_pucch_res_t pucch_res = {};
for (auto& iter : ue_db) { for (auto& iter : ue_db) {
auto rnti = (uint16_t)iter.first; uint16_t rnti = iter.first;
// If it's a User RNTI and doesn't have PUSCH grant in this TTI // If it's a User RNTI and doesn't have PUSCH grant in this TTI
if (SRSLTE_RNTI_ISUSER(rnti) && !ue_db[rnti]->is_grant_available && ue_db[rnti]->is_pcell()) { if (SRSLTE_RNTI_ISUSER(rnti) && !ue_db[rnti]->is_grant_available && ue_db[rnti]->is_pcell()) {