From 33199c25e5af1553e474a6f6eede07e888cd45ee Mon Sep 17 00:00:00 2001 From: Francis Murtagh Date: Mon, 15 Feb 2021 10:11:28 +0000 Subject: IVGCVSW-5675 Implement Pimpl Idiom for IProfiler (lower priority) Signed-off-by: Francis Murtagh Change-Id: If716f5f4e9b5433586b8a939d326830482da2f74 --- src/armnn/LoadedNetwork.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/armnn/LoadedNetwork.hpp') diff --git a/src/armnn/LoadedNetwork.hpp b/src/armnn/LoadedNetwork.hpp index 39b6089ac9..3a44206683 100644 --- a/src/armnn/LoadedNetwork.hpp +++ b/src/armnn/LoadedNetwork.hpp @@ -50,7 +50,7 @@ public: // NOTE we return by reference as the purpose of this method is only to provide // access to the private m_Profiler and in theory we should not need to increment // the shared_ptr's reference counter - const std::shared_ptr& GetProfiler() const { return m_Profiler; } + const std::shared_ptr& GetProfiler() const { return m_Profiler; } void FreeWorkingMemory(); @@ -91,7 +91,7 @@ private: WorkloadQueue m_InputQueue; WorkloadQueue m_WorkloadQueue; WorkloadQueue m_OutputQueue; - std::shared_ptr m_Profiler; + std::shared_ptr m_Profiler; mutable std::mutex m_WorkingMemMutex; -- cgit v1.2.1