aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core/experimental/Types.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/core/experimental/Types.h')
-rw-r--r--arm_compute/core/experimental/Types.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/arm_compute/core/experimental/Types.h b/arm_compute/core/experimental/Types.h
index 2a4bd89385..7ddb930421 100644
--- a/arm_compute/core/experimental/Types.h
+++ b/arm_compute/core/experimental/Types.h
@@ -60,8 +60,10 @@ namespace experimental
{
struct MemoryInfo
{
- MemoryInfo(TensorType type, size_t size, size_t alignment)
- : type(type), size(size), alignment(alignment)
+ MemoryInfo(TensorType type, size_t size, size_t alignment) noexcept
+ : type(type),
+ size(size),
+ alignment(alignment)
{
}
TensorType type;