aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Bottini <manuel.bottini@arm.com>2021-02-08 17:07:04 +0000
committerManuel Bottini <manuel.bottini@arm.com>2021-02-09 09:19:13 +0000
commit8e2133152285a80d2997ab21f6a3397f7c60a929 (patch)
tree0baee84a22184b081a8c6da738348232cffb789a
parent7e20e29904c98adae5a91c6492fd78da88b7a9bf (diff)
downloadComputeLibrary-8e2133152285a80d2997ab21f6a3397f7c60a929.tar.gz
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 <manuel.bottini@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5025 Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
-rw-r--r--src/runtime/CL/mlgo/HeuristicTree.h2
1 files changed, 1 insertions, 1 deletions
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
*