aboutsummaryrefslogtreecommitdiff
path: root/src/core/TensorInfo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/TensorInfo.cpp')
-rw-r--r--src/core/TensorInfo.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/TensorInfo.cpp b/src/core/TensorInfo.cpp
index b77a47e3e1..1059cf2497 100644
--- a/src/core/TensorInfo.cpp
+++ b/src/core/TensorInfo.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2016-2018 ARM Limited.
+ * Copyright (c) 2016-2019 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -87,7 +87,7 @@ TensorInfo::TensorInfo(const TensorShape &tensor_shape, size_t num_channels, Dat
: TensorInfo()
{
init(tensor_shape, num_channels, data_type);
- _quantization_info = quantization_info;
+ _quantization_info = std::move(quantization_info);
}
TensorInfo::TensorInfo(const HOGInfo &hog_info, unsigned int width, unsigned int height)