From 40f51a63c8e7258db15269427ae4fe1ad199c550 Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Sat, 21 Nov 2020 03:04:18 +0000 Subject: Update default C++ standard to C++14 (3RDPARTY_UPDATE) Resolves: COMPMID-3849 Signed-off-by: Georgios Pinitas Change-Id: I6369f112337310140e2d6c8e79630cd11138dfa0 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/4544 Tested-by: Arm Jenkins Reviewed-by: Michalis Spyrou Comments-Addressed: Arm Jenkins --- tests/CL/Helper.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'tests/CL/Helper.h') diff --git a/tests/CL/Helper.h b/tests/CL/Helper.h index e548af4938..d217af6e18 100644 --- a/tests/CL/Helper.h +++ b/tests/CL/Helper.h @@ -33,7 +33,7 @@ #include "src/core/CL/ICLKernel.h" -#include "support/MemorySupport.h" +#include namespace arm_compute { @@ -51,7 +51,7 @@ public: template void configure(Args &&... args) { - auto k = arm_compute::support::cpp14::make_unique(); + auto k = std::make_unique(); k->configure(std::forward(args)...); _kernel = std::move(k); } @@ -63,7 +63,7 @@ public: template void configure(GPUTarget gpu_target, Args &&... args) { - auto k = arm_compute::support::cpp14::make_unique(); + auto k = std::make_unique(); k->set_target(gpu_target); k->configure(std::forward(args)...); _kernel = std::move(k); @@ -92,7 +92,7 @@ public: template void configure(T first, Args &&... args) { - auto k = arm_compute::support::cpp14::make_unique(); + auto k = std::make_unique(); k->configure(first, std::forward(args)...); _kernel = std::move(k); _border_handler->configure(first, BorderSize(bordersize), BorderMode::CONSTANT, PixelValue()); @@ -113,7 +113,7 @@ public: template void configure(T first, T second, Args &&... args) { - auto k = arm_compute::support::cpp14::make_unique(); + auto k = std::make_unique(); k->set_target(CLScheduler::get().target()); k->configure(first, second, std::forward(args)...); _kernel = std::move(k); -- cgit v1.2.1