aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/CL/functions/CLROIPoolingLayer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/CL/functions/CLROIPoolingLayer.cpp')
-rw-r--r--src/runtime/CL/functions/CLROIPoolingLayer.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/runtime/CL/functions/CLROIPoolingLayer.cpp b/src/runtime/CL/functions/CLROIPoolingLayer.cpp
index b0e6716cce..debc5eb24c 100644
--- a/src/runtime/CL/functions/CLROIPoolingLayer.cpp
+++ b/src/runtime/CL/functions/CLROIPoolingLayer.cpp
@@ -24,7 +24,6 @@
#include "arm_compute/runtime/CL/functions/CLROIPoolingLayer.h"
#include "arm_compute/core/CL/ICLArray.h"
#include "src/core/CL/kernels/CLROIPoolingLayerKernel.h"
-#include "support/MemorySupport.h"
using namespace arm_compute;
@@ -36,7 +35,7 @@ void CLROIPoolingLayer::configure(const ICLTensor *input, const ICLTensor *rois,
void CLROIPoolingLayer::configure(const CLCompileContext &compile_context, const ICLTensor *input, const ICLTensor *rois, ICLTensor *output, const ROIPoolingLayerInfo &pool_info)
{
// Configure ROI pooling kernel
- auto k = arm_compute::support::cpp14::make_unique<CLROIPoolingLayerKernel>();
+ auto k = std::make_unique<CLROIPoolingLayerKernel>();
k->configure(compile_context, input, rois, output, pool_info);
_kernel = std::move(k);
}