From 8e2133152285a80d2997ab21f6a3397f7c60a929 Mon Sep 17 00:00:00 2001 From: Manuel Bottini Date: Mon, 8 Feb 2021 17:07:04 +0000 Subject: ArmNN internal OOB failed to build ACL with the use of a deleted function Remove "noexcept" from move assign constructor to support gcc 5.4.0 Resolves: COMPMID-4241 Change-Id: Idff6b8a7468e4733ed6cc87a910bd85590463de0 Signed-off-by: Manuel Bottini Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5025 Reviewed-by: Georgios Pinitas Comments-Addressed: Arm Jenkins Tested-by: Arm Jenkins --- src/runtime/CL/mlgo/HeuristicTree.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/CL/mlgo/HeuristicTree.h b/src/runtime/CL/mlgo/HeuristicTree.h index 64d79ffaa1..28996889b3 100644 --- a/src/runtime/CL/mlgo/HeuristicTree.h +++ b/src/runtime/CL/mlgo/HeuristicTree.h @@ -125,7 +125,7 @@ public: /** Move constructor */ HeuristicTree(HeuristicTree &&other) noexcept = default; /** Move assignment */ - HeuristicTree &operator=(HeuristicTree &&other) noexcept = default; + HeuristicTree &operator=(HeuristicTree &&other) = default; /** Query a leaf value given a gemm shape * -- cgit v1.2.1