lte: Move UE_MEASUREMENT_REPORT_DELAY definition to .cc file

This commit is contained in:
Gabriel Ferreira
2024-04-07 00:47:55 +02:00
parent 36b43d9cbf
commit e2fa301904
2 changed files with 2 additions and 1 deletions

View File

@@ -43,6 +43,7 @@
namespace ns3
{
const Time UE_MEASUREMENT_REPORT_DELAY = MicroSeconds(1);
NS_LOG_COMPONENT_DEFINE("LteUeRrc");

View File

@@ -60,7 +60,7 @@ namespace ns3
* - time-to-trigger check is always performed before the reporting, so there
* would still be chance for it to cancel the reporting if necessary.
*/
static const Time UE_MEASUREMENT_REPORT_DELAY = MicroSeconds(1);
extern const Time UE_MEASUREMENT_REPORT_DELAY;
class LteRlc;
class LteMacSapProvider;