aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/NEON/functions/NETranspose.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/NEON/functions/NETranspose.cpp')
-rw-r--r--src/runtime/NEON/functions/NETranspose.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/runtime/NEON/functions/NETranspose.cpp b/src/runtime/NEON/functions/NETranspose.cpp
index 5af417f4ed..aaa52e36b9 100644
--- a/src/runtime/NEON/functions/NETranspose.cpp
+++ b/src/runtime/NEON/functions/NETranspose.cpp
@@ -24,7 +24,6 @@
#include "arm_compute/runtime/NEON/functions/NETranspose.h"
#include "src/core/NEON/kernels/NETransposeKernel.h"
-#include "support/MemorySupport.h"
#include <utility>
@@ -32,7 +31,7 @@ namespace arm_compute
{
void NETranspose::configure(const ITensor *input, ITensor *output)
{
- auto k = arm_compute::support::cpp14::make_unique<NETransposeKernel>();
+ auto k = std::make_unique<NETransposeKernel>();
k->configure(input, output);
_kernel = std::move(k);
}