aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/CL/ICLSimpleFunction.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/CL/ICLSimpleFunction.cpp')
-rw-r--r--src/runtime/CL/ICLSimpleFunction.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/runtime/CL/ICLSimpleFunction.cpp b/src/runtime/CL/ICLSimpleFunction.cpp
index b075aa17e3..4530537789 100644
--- a/src/runtime/CL/ICLSimpleFunction.cpp
+++ b/src/runtime/CL/ICLSimpleFunction.cpp
@@ -28,13 +28,12 @@
#include "arm_compute/runtime/CL/CLScheduler.h"
#include "src/core/CL/ICLKernel.h"
#include "src/core/CL/kernels/CLFillBorderKernel.h"
-#include "support/MemorySupport.h"
using namespace arm_compute;
ICLSimpleFunction::ICLSimpleFunction(CLRuntimeContext *ctx) // NOLINT
: _kernel(),
- _border_handler(support::cpp14::make_unique<CLFillBorderKernel>()),
+ _border_handler(std::make_unique<CLFillBorderKernel>()),
_ctx(ctx)
{
}