From 0a35667e683105021834a28ac13d1d35af3a4a4e Mon Sep 17 00:00:00 2001 From: Sadik Armagan Date: Fri, 20 Mar 2020 11:11:01 +0000 Subject: IVGCVSW-4587 ArmNN failing to build in the Internal OOB * ProfilingService reference field not required in TimelineUtilityMethods Signed-off-by: Sadik Armagan Change-Id: I83ca13e577d35fb9497d7df1535607ec66c201bf --- src/profiling/TimelineUtilityMethods.hpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/profiling/TimelineUtilityMethods.hpp') 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 GetTimelineUtils(ProfilingService& profilingService); TimelineUtilityMethods( - std::unique_ptr& sendTimelinePacket, ProfilingService& profilingService) - : m_SendTimelinePacket(std::move(sendTimelinePacket)), m_ProfilingService(profilingService) {} + std::unique_ptr& 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 m_SendTimelinePacket; - profiling::ProfilingService& m_ProfilingService; }; } // namespace profiling -- cgit v1.2.1