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/NEON/Helper.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'tests/NEON/Helper.h') diff --git a/tests/NEON/Helper.h b/tests/NEON/Helper.h index ea47a416b1..714152ebcd 100644 --- a/tests/NEON/Helper.h +++ b/tests/NEON/Helper.h @@ -28,11 +28,11 @@ #include "arm_compute/runtime/NEON/INESimpleFunction.h" #include "arm_compute/runtime/NEON/INESimpleFunctionNoBorder.h" #include "src/core/NEON/kernels/NEFillBorderKernel.h" -#include "support/MemorySupport.h" #include "tests/Globals.h" #include #include +#include #include namespace arm_compute @@ -64,7 +64,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); } @@ -92,11 +92,11 @@ 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); - auto b = arm_compute::support::cpp14::make_unique(); + auto b = std::make_unique(); b->configure(first, BorderSize(bordersize), BorderMode::CONSTANT, PixelValue()); _border_handler = std::move(b); } @@ -115,11 +115,11 @@ 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); - auto b = arm_compute::support::cpp14::make_unique(); + auto b = std::make_unique(); b->configure(first, BorderSize(_kernel->border_size()), BorderMode::CONSTANT, PixelValue()); _border_handler = std::move(b); } -- cgit v1.2.1