From 9265a88c0064dbcf5ad4694bbdcce1b335a394e6 Mon Sep 17 00:00:00 2001 From: Jim Flynn Date: Thu, 10 Mar 2022 23:35:26 +0000 Subject: IVGCVSW-6844 replace armnn:IgnoreUnused with arm::pipe::IgnoreUnused in profiling code Change-Id: Ifbdfb034deda2f792ac1069dac808917606ccc9e Signed-off-by: Jim Flynn --- .../test/ProfilingConnectionDumpToFileDecoratorTests.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/profiling/test/ProfilingConnectionDumpToFileDecoratorTests.cpp') diff --git a/src/profiling/test/ProfilingConnectionDumpToFileDecoratorTests.cpp b/src/profiling/test/ProfilingConnectionDumpToFileDecoratorTests.cpp index f1f1d2410f..5d99feef95 100644 --- a/src/profiling/test/ProfilingConnectionDumpToFileDecoratorTests.cpp +++ b/src/profiling/test/ProfilingConnectionDumpToFileDecoratorTests.cpp @@ -9,10 +9,10 @@ #include -#include - +#include #include + #include #include @@ -53,14 +53,14 @@ public: bool WritePacket(const unsigned char* buffer, uint32_t length) override { - armnn::IgnoreUnused(buffer); - armnn::IgnoreUnused(length); + arm::pipe::IgnoreUnused(buffer); + arm::pipe::IgnoreUnused(length); return true; } Packet ReadPacket(uint32_t timeout) override { - armnn::IgnoreUnused(timeout); + arm::pipe::IgnoreUnused(timeout); return std::move(*m_Packet); } -- cgit v1.2.1