aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/CL/functions/CLFastCorners.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/CL/functions/CLFastCorners.cpp')
-rw-r--r--src/runtime/CL/functions/CLFastCorners.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/runtime/CL/functions/CLFastCorners.cpp b/src/runtime/CL/functions/CLFastCorners.cpp
index 110d2c3639..a3a62d6d5e 100644
--- a/src/runtime/CL/functions/CLFastCorners.cpp
+++ b/src/runtime/CL/functions/CLFastCorners.cpp
@@ -31,7 +31,6 @@
#include "arm_compute/runtime/ITensorAllocator.h"
#include "src/core/CL/kernels/CLFastCornersKernel.h"
#include "src/core/CL/kernels/CLFillBorderKernel.h"
-#include "support/MemorySupport.h"
#include <algorithm>
#include <cstring>
@@ -40,9 +39,9 @@ using namespace arm_compute;
CLFastCorners::CLFastCorners(std::shared_ptr<IMemoryManager> memory_manager)
: _memory_group(std::move(memory_manager)),
- _fast_corners_kernel(support::cpp14::make_unique<CLFastCornersKernel>()),
+ _fast_corners_kernel(std::make_unique<CLFastCornersKernel>()),
_suppr_func(),
- _copy_array_kernel(support::cpp14::make_unique<CLCopyToArrayKernel>()),
+ _copy_array_kernel(std::make_unique<CLCopyToArrayKernel>()),
_output(),
_suppr(),
_win(),