aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/CL/functions/CLYOLOLayer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/CL/functions/CLYOLOLayer.cpp')
-rw-r--r--src/runtime/CL/functions/CLYOLOLayer.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/runtime/CL/functions/CLYOLOLayer.cpp b/src/runtime/CL/functions/CLYOLOLayer.cpp
index 46bf220b0c..e21d9a7fbb 100644
--- a/src/runtime/CL/functions/CLYOLOLayer.cpp
+++ b/src/runtime/CL/functions/CLYOLOLayer.cpp
@@ -25,7 +25,6 @@
#include "arm_compute/core/Types.h"
#include "src/core/CL/kernels/CLYOLOLayerKernel.h"
-#include "support/MemorySupport.h"
using namespace arm_compute;
@@ -36,7 +35,7 @@ void CLYOLOLayer::configure(ICLTensor *input, ICLTensor *output, const Activatio
void CLYOLOLayer::configure(const CLCompileContext &compile_context, ICLTensor *input, ICLTensor *output, const ActivationLayerInfo &act_info, int32_t num_classes)
{
- auto k = arm_compute::support::cpp14::make_unique<CLYOLOLayerKernel>();
+ auto k = std::make_unique<CLYOLOLayerKernel>();
k->configure(compile_context, input, output, act_info, num_classes);
_kernel = std::move(k);
}