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/Softmax.hpp | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'delegate/src/Softmax.hpp') diff --git a/delegate/src/Softmax.hpp b/delegate/src/Softmax.hpp index b22fa9bf67..ddadbc73c8 100644 --- a/delegate/src/Softmax.hpp +++ b/delegate/src/Softmax.hpp @@ -5,6 +5,8 @@ #pragma once +#include + #include #include #include @@ -19,6 +21,12 @@ TfLiteStatus VisitSoftmaxOperator(DelegateData& delegateData, int nodeIndex, int32_t softmaxOperatorCode) { + armnn::IgnoreUnused(delegateData, + tfLiteContext, + tfLiteNode, + nodeIndex, + softmaxOperatorCode); + return kTfLiteError; } -- cgit v1.2.1