aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/CL/functions/CLSelect.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/CL/functions/CLSelect.cpp')
-rw-r--r--src/runtime/CL/functions/CLSelect.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/runtime/CL/functions/CLSelect.cpp b/src/runtime/CL/functions/CLSelect.cpp
index 374da91b78..5ec18a032f 100644
--- a/src/runtime/CL/functions/CLSelect.cpp
+++ b/src/runtime/CL/functions/CLSelect.cpp
@@ -27,8 +27,6 @@
#include "arm_compute/runtime/CL/CLScheduler.h"
#include "src/core/CL/kernels/CLSelectKernel.h"
-#include "support/MemorySupport.h"
-
using namespace arm_compute;
namespace arm_compute
@@ -40,7 +38,7 @@ void CLSelect::configure(const ICLTensor *c, const ICLTensor *x, const ICLTensor
void CLSelect::configure(const CLCompileContext &compile_context, const ICLTensor *c, const ICLTensor *x, const ICLTensor *y, ICLTensor *output)
{
- auto k = arm_compute::support::cpp14::make_unique<CLSelectKernel>();
+ auto k = std::make_unique<CLSelectKernel>();
k->configure(compile_context, c, x, y, output);
_kernel = std::move(k);
}