aboutsummaryrefslogtreecommitdiff
path: root/delegate/src/BatchSpace.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'delegate/src/BatchSpace.hpp')
-rw-r--r--delegate/src/BatchSpace.hpp12
1 files changed, 12 insertions, 0 deletions
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 <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,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;
}