ArmNN internal OOB failed to build ACL with the use of a deleted function
authorManuel Bottini <manuel.bottini@arm.com>
Mon, 8 Feb 2021 17:07:04 +0000 (17:07 +0000)
committerManuel Bottini <manuel.bottini@arm.com>
Tue, 9 Feb 2021 09:19:13 +0000 (09:19 +0000)
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>
src/runtime/CL/mlgo/HeuristicTree.h

index 64d79ffaa1d38a9fd8464db69a620dc415e74a88..28996889b33b4f9acfaadea43d867dba2fe42bec 100644 (file)
@@ -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
      *