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.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/TensorInfo.cpp b/src/core/TensorInfo.cpp
index 414c128a27..7b1f9c542a 100644
--- a/src/core/TensorInfo.cpp
+++ b/src/core/TensorInfo.cpp
@@ -29,7 +29,8 @@
#include "arm_compute/core/TensorInfo.h"
#include "arm_compute/core/Validate.h"
#include "src/core/helpers/Utils.h"
-#include "support/MemorySupport.h"
+
+#include <memory>
using namespace arm_compute;
@@ -314,7 +315,7 @@ bool TensorInfo::extend_padding(const PaddingSize &padding)
std::unique_ptr<ITensorInfo> TensorInfo::clone() const
{
- return support::cpp14::make_unique<TensorInfo>(*this);
+ return std::make_unique<TensorInfo>(*this);
}
ITensorInfo &TensorInfo::set_data_type(DataType data_type)