aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/NEON/functions/NEComputeAllAnchors.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/NEON/functions/NEComputeAllAnchors.cpp')
-rw-r--r--src/runtime/NEON/functions/NEComputeAllAnchors.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/runtime/NEON/functions/NEComputeAllAnchors.cpp b/src/runtime/NEON/functions/NEComputeAllAnchors.cpp
index 3f5712dd3a..a305ca0708 100644
--- a/src/runtime/NEON/functions/NEComputeAllAnchors.cpp
+++ b/src/runtime/NEON/functions/NEComputeAllAnchors.cpp
@@ -24,14 +24,13 @@
#include "arm_compute/runtime/NEON/functions/NEComputeAllAnchors.h"
#include "src/core/NEON/kernels/NEGenerateProposalsLayerKernel.h"
-#include "support/MemorySupport.h"
namespace arm_compute
{
void NEComputeAllAnchors::configure(const ITensor *anchors, ITensor *all_anchors, const ComputeAnchorsInfo &info)
{
// Configure ComputeAllAnchors kernel
- auto k = arm_compute::support::cpp14::make_unique<NEComputeAllAnchorsKernel>();
+ auto k = std::make_unique<NEComputeAllAnchorsKernel>();
k->configure(anchors, all_anchors, info);
_kernel = std::move(k);
}