From 50e48aaa15bdf39a2a7ad39daee93b7217d26d32 Mon Sep 17 00:00:00 2001 From: Michalis Spyrou Date: Thu, 21 Apr 2022 16:42:56 +0100 Subject: Add missing noexcept. This fixes building faillures with gcc9. Change-Id: I993116866b0f1e41cb2518e880798ad1f8c2e0af Signed-off-by: Michalis Spyrou Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/7448 Reviewed-by: Gunes Bayir Comments-Addressed: Arm Jenkins Tested-by: Arm Jenkins --- arm_compute/core/Types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_compute/core/Types.h b/arm_compute/core/Types.h index 47b9485d80..473102a95a 100644 --- a/arm_compute/core/Types.h +++ b/arm_compute/core/Types.h @@ -1268,7 +1268,7 @@ struct PoolingLayerInfo struct Pooling3dLayerInfo { /** Default Constructor */ - Pooling3dLayerInfo() + Pooling3dLayerInfo() noexcept : pool_type(PoolingType::MAX), pool_size(Size3D()), stride(Size3D()), -- cgit v1.2.1