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>
/** 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
*