aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/CL/functions/CLThreshold.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/CL/functions/CLThreshold.cpp')
-rw-r--r--src/runtime/CL/functions/CLThreshold.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/runtime/CL/functions/CLThreshold.cpp b/src/runtime/CL/functions/CLThreshold.cpp
index 250f6f034f..901cfd8993 100644
--- a/src/runtime/CL/functions/CLThreshold.cpp
+++ b/src/runtime/CL/functions/CLThreshold.cpp
@@ -24,7 +24,6 @@
#include "arm_compute/runtime/CL/functions/CLThreshold.h"
#include "src/core/CL/kernels/CLThresholdKernel.h"
-#include "support/MemorySupport.h"
#include <utility>
@@ -42,7 +41,7 @@ void CLThreshold::configure(const ICLTensor *input, ICLTensor *output, const Thr
void CLThreshold::configure(const CLCompileContext &compile_context, const ICLTensor *input, ICLTensor *output, const ThresholdKernelInfo &info)
{
- auto k = arm_compute::support::cpp14::make_unique<CLThresholdKernel>();
+ auto k = std::make_unique<CLThresholdKernel>();
k->configure(compile_context, input, output, info);
_kernel = std::move(k);
}