aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/NEON/functions/NEFlattenLayer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/NEON/functions/NEFlattenLayer.cpp')
-rw-r--r--src/runtime/NEON/functions/NEFlattenLayer.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/runtime/NEON/functions/NEFlattenLayer.cpp b/src/runtime/NEON/functions/NEFlattenLayer.cpp
index 4dfe96325e..21e55665cd 100644
--- a/src/runtime/NEON/functions/NEFlattenLayer.cpp
+++ b/src/runtime/NEON/functions/NEFlattenLayer.cpp
@@ -25,13 +25,12 @@
#include "arm_compute/core/Size2D.h"
#include "src/core/NEON/kernels/NEFlattenLayerKernel.h"
-#include "support/MemorySupport.h"
namespace arm_compute
{
void NEFlattenLayer::configure(const ITensor *input, ITensor *output)
{
- auto k = arm_compute::support::cpp14::make_unique<NEFlattenLayerKernel>();
+ auto k = std::make_unique<NEFlattenLayerKernel>();
k->configure(input, output);
_kernel = std::move(k);
}