aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/CL/functions/CLHOGGradient.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/CL/functions/CLHOGGradient.cpp')
-rw-r--r--src/runtime/CL/functions/CLHOGGradient.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/runtime/CL/functions/CLHOGGradient.cpp b/src/runtime/CL/functions/CLHOGGradient.cpp
index 5f3b9cf529..f3aa527417 100644
--- a/src/runtime/CL/functions/CLHOGGradient.cpp
+++ b/src/runtime/CL/functions/CLHOGGradient.cpp
@@ -28,14 +28,13 @@
#include "arm_compute/runtime/CL/CLScheduler.h"
#include "src/core/CL/kernels/CLFillBorderKernel.h"
#include "src/core/CL/kernels/CLMagnitudePhaseKernel.h"
-#include "support/MemorySupport.h"
using namespace arm_compute;
CLHOGGradient::CLHOGGradient(std::shared_ptr<IMemoryManager> memory_manager)
: _memory_group(std::move(memory_manager)),
_derivative(),
- _mag_phase(support::cpp14::make_unique<CLMagnitudePhaseKernel>()),
+ _mag_phase(std::make_unique<CLMagnitudePhaseKernel>()),
_gx(),
_gy()
{