aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core/Size3D.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/core/Size3D.h')
-rw-r--r--arm_compute/core/Size3D.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/arm_compute/core/Size3D.h b/arm_compute/core/Size3D.h
index 4241ed4f7e..e2dc6fe012 100644
--- a/arm_compute/core/Size3D.h
+++ b/arm_compute/core/Size3D.h
@@ -40,8 +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) noexcept
- : width(w), height(h), depth(d)
+ Size3D(size_t w, size_t h, size_t d) noexcept : width(w), height(h), depth(d)
{
}