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