From e2fa30190405365440271352ca28c00c1200e120 Mon Sep 17 00:00:00 2001 From: Gabriel Ferreira Date: Sun, 7 Apr 2024 00:47:55 +0200 Subject: [PATCH] lte: Move UE_MEASUREMENT_REPORT_DELAY definition to .cc file --- src/lte/model/lte-ue-rrc.cc | 1 + src/lte/model/lte-ue-rrc.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lte/model/lte-ue-rrc.cc b/src/lte/model/lte-ue-rrc.cc index ae7ebe879..4bb123e52 100644 --- a/src/lte/model/lte-ue-rrc.cc +++ b/src/lte/model/lte-ue-rrc.cc @@ -43,6 +43,7 @@ namespace ns3 { +const Time UE_MEASUREMENT_REPORT_DELAY = MicroSeconds(1); NS_LOG_COMPONENT_DEFINE("LteUeRrc"); diff --git a/src/lte/model/lte-ue-rrc.h b/src/lte/model/lte-ue-rrc.h index b760faa45..679fbd0bb 100644 --- a/src/lte/model/lte-ue-rrc.h +++ b/src/lte/model/lte-ue-rrc.h @@ -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;