aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/TimelineUtilityMethods.hpp
diff options
context:
space:
mode:
authorSadik Armagan <sadik.armagan@arm.com>2020-03-20 11:11:01 +0000
committerSadik Armagan <sadik.armagan@arm.com>2020-03-20 11:11:01 +0000
commit0a35667e683105021834a28ac13d1d35af3a4a4e (patch)
treed790767a68c8f5fee6878850ab8d7f57f4eff602 /src/profiling/TimelineUtilityMethods.hpp
parentea41b57721b644b9350e14754d3ecdcfba87667f (diff)
downloadarmnn-0a35667e683105021834a28ac13d1d35af3a4a4e.tar.gz
IVGCVSW-4587 ArmNN failing to build in the Internal OOB
* ProfilingService reference field not required in TimelineUtilityMethods Signed-off-by: Sadik Armagan <sadik.armagan@arm.com> Change-Id: I83ca13e577d35fb9497d7df1535607ec66c201bf
Diffstat (limited to 'src/profiling/TimelineUtilityMethods.hpp')
-rw-r--r--src/profiling/TimelineUtilityMethods.hpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/profiling/TimelineUtilityMethods.hpp b/src/profiling/TimelineUtilityMethods.hpp
index df56cd6f42..17d2aac57b 100644
--- a/src/profiling/TimelineUtilityMethods.hpp
+++ b/src/profiling/TimelineUtilityMethods.hpp
@@ -25,11 +25,11 @@ public:
static std::unique_ptr<TimelineUtilityMethods> GetTimelineUtils(ProfilingService& profilingService);
TimelineUtilityMethods(
- std::unique_ptr<ISendTimelinePacket>& sendTimelinePacket, ProfilingService& profilingService)
- : m_SendTimelinePacket(std::move(sendTimelinePacket)), m_ProfilingService(profilingService) {}
+ std::unique_ptr<ISendTimelinePacket>& sendTimelinePacket)
+ : m_SendTimelinePacket(std::move(sendTimelinePacket)) {}
TimelineUtilityMethods(TimelineUtilityMethods&& other)
- : m_SendTimelinePacket(std::move(other.m_SendTimelinePacket)), m_ProfilingService(other.m_ProfilingService) {}
+ : m_SendTimelinePacket(std::move(other.m_SendTimelinePacket)) {}
TimelineUtilityMethods(const TimelineUtilityMethods& other) = delete;
@@ -92,7 +92,6 @@ public:
private:
std::unique_ptr<ISendTimelinePacket> m_SendTimelinePacket;
- profiling::ProfilingService& m_ProfilingService;
};
} // namespace profiling