From c56596b64ebdbb6230b75f1de4c47e065117a7cd Mon Sep 17 00:00:00 2001 From: Alexander Krotov Date: Mon, 19 Jun 2017 16:18:43 +0300 Subject: [PATCH] lte: Fix limitation on number of component carriers in LteHelper --- src/lte/helper/lte-helper.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lte/helper/lte-helper.cc b/src/lte/helper/lte-helper.cc index 213e52532..864d48b49 100644 --- a/src/lte/helper/lte-helper.cc +++ b/src/lte/helper/lte-helper.cc @@ -196,7 +196,7 @@ TypeId LteHelper::GetTypeId (void) "If it is more than one and m_useCa is false, it will raise an error ", UintegerValue (1), MakeUintegerAccessor (&LteHelper::m_noOfCcs), - MakeUintegerChecker (1, 3)) + MakeUintegerChecker (MIN_NO_CC, MAX_NO_CC)) ; return tid; }