aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/CL/functions/CLIntegralImage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/CL/functions/CLIntegralImage.cpp')
-rw-r--r--src/runtime/CL/functions/CLIntegralImage.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/runtime/CL/functions/CLIntegralImage.cpp b/src/runtime/CL/functions/CLIntegralImage.cpp
index 41e47e77c7..56a151a085 100644
--- a/src/runtime/CL/functions/CLIntegralImage.cpp
+++ b/src/runtime/CL/functions/CLIntegralImage.cpp
@@ -25,13 +25,12 @@
#include "arm_compute/runtime/CL/CLScheduler.h"
#include "src/core/CL/kernels/CLIntegralImageKernel.h"
-#include "support/MemorySupport.h"
using namespace arm_compute;
CLIntegralImage::CLIntegralImage()
- : _integral_hor(support::cpp14::make_unique<CLIntegralImageHorKernel>()),
- _integral_vert(support::cpp14::make_unique<CLIntegralImageVertKernel>())
+ : _integral_hor(std::make_unique<CLIntegralImageHorKernel>()),
+ _integral_vert(std::make_unique<CLIntegralImageVertKernel>())
{
}