From bbfe603e5ae42317a2b67d713d00882bea341c88 Mon Sep 17 00:00:00 2001 From: Jim Flynn Date: Mon, 20 Jul 2020 16:57:44 +0100 Subject: IVGCVSW-5166 Pull out the common and server side code into standalone libraries Change-Id: I180f84c493a9b2be4b93b25d312ebdd9e71b1735 Signed-off-by: Jim Flynn --- tests/profiling/gatordmock/StubCommandHandler.hpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'tests/profiling/gatordmock/StubCommandHandler.hpp') diff --git a/tests/profiling/gatordmock/StubCommandHandler.hpp b/tests/profiling/gatordmock/StubCommandHandler.hpp index 450f90fd2b..50fb14b5de 100644 --- a/tests/profiling/gatordmock/StubCommandHandler.hpp +++ b/tests/profiling/gatordmock/StubCommandHandler.hpp @@ -1,11 +1,11 @@ // -// Copyright © 2020 Arm Ltd. All rights reserved. +// Copyright © 2020 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once -#include -#include +#include +#include #include @@ -15,7 +15,7 @@ namespace armnn namespace gatordmock { -class StubCommandHandler : public profiling::CommandHandlerFunctor +class StubCommandHandler : public arm::pipe::CommandHandlerFunctor { public: @@ -30,10 +30,10 @@ public: : CommandHandlerFunctor(familyId, packetId, version) {} - void operator()(const armnn::profiling::Packet& packet) override + void operator()(const arm::pipe::Packet& packet) override { //No op - IgnoreUnused(packet); + arm::pipe::IgnoreUnused(packet); } }; -- cgit v1.2.1