aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/NEON/functions/NECopy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/NEON/functions/NECopy.cpp')
-rw-r--r--src/runtime/NEON/functions/NECopy.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/runtime/NEON/functions/NECopy.cpp b/src/runtime/NEON/functions/NECopy.cpp
index 9e7bf40559..11707cbd4c 100644
--- a/src/runtime/NEON/functions/NECopy.cpp
+++ b/src/runtime/NEON/functions/NECopy.cpp
@@ -24,7 +24,6 @@
#include "arm_compute/runtime/NEON/functions/NECopy.h"
#include "src/core/NEON/kernels/NECopyKernel.h"
-#include "support/MemorySupport.h"
#include <utility>
@@ -34,7 +33,7 @@ NECopy::~NECopy() = default;
void NECopy::configure(ITensor *input, ITensor *output)
{
- auto k = arm_compute::support::cpp14::make_unique<NECopyKernel>();
+ auto k = std::make_unique<NECopyKernel>();
k->configure(input, output);
_kernel = std::move(k);
}