aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/core')
-rw-r--r--arm_compute/core/Size3D.h2
-rw-r--r--arm_compute/core/Types.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/arm_compute/core/Size3D.h b/arm_compute/core/Size3D.h
index 148bd17919..4241ed4f7e 100644
--- a/arm_compute/core/Size3D.h
+++ b/arm_compute/core/Size3D.h
@@ -40,7 +40,7 @@ public:
* @param[in] h Height of the 3D shape or object
* @param[in] d Depth of the 3D shape or object
*/
- Size3D(size_t w, size_t h, size_t d)
+ Size3D(size_t w, size_t h, size_t d) noexcept
: width(w), height(h), depth(d)
{
}
diff --git a/arm_compute/core/Types.h b/arm_compute/core/Types.h
index 47df44cb67..9615811349 100644
--- a/arm_compute/core/Types.h
+++ b/arm_compute/core/Types.h
@@ -772,7 +772,7 @@ private:
/** Padding information for 3D operations like Conv3d */
struct Padding3D
{
- Padding3D()
+ Padding3D() noexcept
{
}