aboutsummaryrefslogtreecommitdiff
path: root/delegate/src/ArgMinMax.hpp
diff options
context:
space:
mode:
authorFinn Williams <Finn.Williams@arm.com>2020-11-13 13:23:15 +0000
committerFinn Williams <Finn.Williams@arm.com>2020-11-16 12:31:03 +0000
commit6f9f99024df71b6b7f7115b58d85eb100c66f3c5 (patch)
tree412f5c3b4f9ade8fa9cc66cfe84c76b5ac52b461 /delegate/src/ArgMinMax.hpp
parent72a7cf21453253ed4ac0c17c39773179c857935f (diff)
downloadarmnn-6f9f99024df71b6b7f7115b58d85eb100c66f3c5.tar.gz
IVGCVSW-5508 Activate compiler warnings in ArmNN TfLite Delegate
Signed-off-by: Finn Williams <Finn.Williams@arm.com> Change-Id: I1a8e2aa618ff693c61010e6150f3ca41b8ab1201
Diffstat (limited to 'delegate/src/ArgMinMax.hpp')
-rw-r--r--delegate/src/ArgMinMax.hpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/delegate/src/ArgMinMax.hpp b/delegate/src/ArgMinMax.hpp
index 4d454e10bb..367ef2ed14 100644
--- a/delegate/src/ArgMinMax.hpp
+++ b/delegate/src/ArgMinMax.hpp
@@ -5,6 +5,8 @@
#pragma once
+#include <armnn/utility/IgnoreUnused.hpp>
+
#include <tensorflow/lite/builtin_ops.h>
#include <tensorflow/lite/c/builtin_op_data.h>
#include <tensorflow/lite/c/common.h>
@@ -19,6 +21,12 @@ TfLiteStatus VisitArgMinMaxOperator(DelegateData& delegateData,
int nodeIndex,
int32_t argMinMaxOperatorCode)
{
+ armnn::IgnoreUnused(delegateData,
+ tfLiteContext,
+ tfLiteNode,
+ nodeIndex,
+ argMinMaxOperatorCode);
+
return kTfLiteError;
}