From 6bff195a51915fd88c1aa1904cf269dbd1a04f50 Mon Sep 17 00:00:00 2001 From: Michalis Spyrou Date: Wed, 2 Oct 2019 17:22:11 +0100 Subject: COMPMID-2486: Remove disabled compiler warnings Removed -Wno-unused-parameter and -Wno-deprecated-declarations compilation flags. Plus, 3RDPARTY_UPDATE. Change-Id: I43098c7af527d5651aad3c597b508a56f8813dda Signed-off-by: Michalis Spyrou Reviewed-on: https://review.mlplatform.org/c/2041 Comments-Addressed: Arm Jenkins Reviewed-by: Georgios Pinitas Tested-by: Arm Jenkins --- arm_compute/graph/backends/FunctionHelpers.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'arm_compute/graph/backends/FunctionHelpers.h') diff --git a/arm_compute/graph/backends/FunctionHelpers.h b/arm_compute/graph/backends/FunctionHelpers.h index 10f8c0c5c7..94b385e81e 100644 --- a/arm_compute/graph/backends/FunctionHelpers.h +++ b/arm_compute/graph/backends/FunctionHelpers.h @@ -83,6 +83,7 @@ void validate_node(const INode &node, size_t num_expected_inputs, size_t num_exp ARM_COMPUTE_ERROR_ON(TargetInfo::TargetType != node.assigned_target()); ARM_COMPUTE_ERROR_ON(node.num_inputs() != num_expected_inputs); ARM_COMPUTE_ERROR_ON(node.num_outputs() != num_expected_outputs); + ARM_COMPUTE_UNUSED(node, num_expected_inputs, num_expected_outputs); } /** Creates a backend activation layer function @@ -1471,6 +1472,7 @@ std::unique_ptr create_stack_layer(StackLayerNode &node) template std::unique_ptr create_upsample_layer(UpsampleLayerNode &node, GraphContext &ctx) { + ARM_COMPUTE_UNUSED(ctx); validate_node(node, 1 /* expected inputs */, 1 /* expected outputs */); // Extract IO and info @@ -1514,6 +1516,7 @@ std::unique_ptr create_upsample_layer(UpsampleLayerNode &node, GraphC template std::unique_ptr create_yolo_layer(YOLOLayerNode &node, GraphContext &ctx) { + ARM_COMPUTE_UNUSED(ctx); validate_node(node, 1 /* expected inputs */, 1 /* expected outputs */); // Extract IO and info -- cgit v1.2.1