From 6f9f99024df71b6b7f7115b58d85eb100c66f3c5 Mon Sep 17 00:00:00 2001 From: Finn Williams Date: Fri, 13 Nov 2020 13:23:15 +0000 Subject: IVGCVSW-5508 Activate compiler warnings in ArmNN TfLite Delegate Signed-off-by: Finn Williams Change-Id: I1a8e2aa618ff693c61010e6150f3ca41b8ab1201 --- delegate/src/BatchSpace.hpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'delegate/src/BatchSpace.hpp') diff --git a/delegate/src/BatchSpace.hpp b/delegate/src/BatchSpace.hpp index 3479ddf30b..5a8a5dcd5b 100644 --- a/delegate/src/BatchSpace.hpp +++ b/delegate/src/BatchSpace.hpp @@ -5,6 +5,8 @@ #pragma once +#include + #include #include #include @@ -19,6 +21,11 @@ TfLiteStatus VisitBatchToSpaceNdOperator(DelegateData& delegateData, int nodeIndex, int32_t operatorCode) { + armnn::IgnoreUnused(delegateData, + tfLiteContext, + tfLiteNode, + nodeIndex, + operatorCode); return kTfLiteError; } @@ -28,6 +35,11 @@ TfLiteStatus VisitSpaceToBatchNdOperator(DelegateData& delegateData, int nodeIndex, int32_t operatorCode) { + armnn::IgnoreUnused(delegateData, + tfLiteContext, + tfLiteNode, + nodeIndex, + operatorCode); return kTfLiteError; } -- cgit v1.2.1