aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/CL/functions/CLAbsoluteDifference.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/CL/functions/CLAbsoluteDifference.cpp')
-rw-r--r--src/runtime/CL/functions/CLAbsoluteDifference.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/runtime/CL/functions/CLAbsoluteDifference.cpp b/src/runtime/CL/functions/CLAbsoluteDifference.cpp
index b7f40a516c..ff5b0a864d 100644
--- a/src/runtime/CL/functions/CLAbsoluteDifference.cpp
+++ b/src/runtime/CL/functions/CLAbsoluteDifference.cpp
@@ -24,7 +24,6 @@
#include "arm_compute/runtime/CL/functions/CLAbsoluteDifference.h"
#include "src/core/CL/kernels/CLAbsoluteDifferenceKernel.h"
-#include "support/MemorySupport.h"
#include <utility>
@@ -37,7 +36,7 @@ void CLAbsoluteDifference::configure(const ICLTensor *input1, const ICLTensor *i
void CLAbsoluteDifference::configure(const CLCompileContext &compile_context, const ICLTensor *input1, const ICLTensor *input2, ICLTensor *output)
{
- auto k = arm_compute::support::cpp14::make_unique<CLAbsoluteDifferenceKernel>();
+ auto k = std::make_unique<CLAbsoluteDifferenceKernel>();
k->configure(compile_context, input1, input2, output);
_kernel = std::move(k);
}