aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/NEON/functions/NERange.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/NEON/functions/NERange.cpp')
-rw-r--r--src/runtime/NEON/functions/NERange.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/runtime/NEON/functions/NERange.cpp b/src/runtime/NEON/functions/NERange.cpp
index ba166b2d58..56ef2bf657 100644
--- a/src/runtime/NEON/functions/NERange.cpp
+++ b/src/runtime/NEON/functions/NERange.cpp
@@ -25,7 +25,6 @@
#include "arm_compute/runtime/NEON/NEScheduler.h"
#include "src/core/NEON/kernels/NERangeKernel.h"
-#include "support/MemorySupport.h"
namespace arm_compute
{
@@ -38,7 +37,7 @@ NERange::NERange()
void NERange::configure(ITensor *output, const float start, const float end, const float step)
{
- _kernel = arm_compute::support::cpp14::make_unique<NERangeKernel>();
+ _kernel = std::make_unique<NERangeKernel>();
_kernel->configure(output, start, end, step);
}