From 75c14f4241b0225640ee6011a41ed0102f4e742c Mon Sep 17 00:00:00 2001 From: Jim Flynn Date: Thu, 10 Mar 2022 22:05:42 +0000 Subject: IVGCVSW-6841 Replace armnn::numeric_cast with arm::pipe::numeric_cast in profiling code Change-Id: Ib3115694608dee59ced8dc31077e16fe19d0dfea Signed-off-by: Jim Flynn --- src/profiling/ProfilingService.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/profiling/ProfilingService.cpp') diff --git a/src/profiling/ProfilingService.cpp b/src/profiling/ProfilingService.cpp index f187b398a1..f0d668cc32 100644 --- a/src/profiling/ProfilingService.cpp +++ b/src/profiling/ProfilingService.cpp @@ -6,8 +6,8 @@ #include "ProfilingService.hpp" #include -#include +#include #include #include @@ -323,7 +323,7 @@ void ProfilingService::InitializeCounterValue(uint16_t counterUid) // Increase the size of the counter index if necessary if (counterUid >= m_CounterIndex.size()) { - m_CounterIndex.resize(armnn::numeric_cast(counterUid) + 1); + m_CounterIndex.resize(arm::pipe::numeric_cast(counterUid) + 1); } // Create a new atomic counter and add it to the list -- cgit v1.2.1