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 --- src/runtime/NEON/functions/NEArithmeticSubtraction.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/runtime/NEON/functions/NEArithmeticSubtraction.cpp') diff --git a/src/runtime/NEON/functions/NEArithmeticSubtraction.cpp b/src/runtime/NEON/functions/NEArithmeticSubtraction.cpp index ba3f426269..512cfd6f70 100644 --- a/src/runtime/NEON/functions/NEArithmeticSubtraction.cpp +++ b/src/runtime/NEON/functions/NEArithmeticSubtraction.cpp @@ -25,7 +25,6 @@ #include "arm_compute/core/ITensor.h" #include "src/core/NEON/kernels/NEArithmeticSubtractionKernel.h" -#include "support/MemorySupport.h" #include @@ -36,7 +35,7 @@ namespace experimental void NEArithmeticSubtraction::configure(const ITensorInfo *input1, const ITensorInfo *input2, ITensorInfo *output, ConvertPolicy policy, const ActivationLayerInfo &act_info) { ARM_COMPUTE_UNUSED(act_info); - auto k = arm_compute::support::cpp14::make_unique(); + auto k = std::make_unique(); k->configure(input1, input2, output, policy); _kernel = std::move(k); } @@ -57,7 +56,7 @@ struct NEArithmeticSubtraction::Impl }; NEArithmeticSubtraction::NEArithmeticSubtraction() - : _impl(support::cpp14::make_unique()) + : _impl(std::make_unique()) { } NEArithmeticSubtraction::NEArithmeticSubtraction(NEArithmeticSubtraction &&) = default; @@ -74,7 +73,7 @@ void NEArithmeticSubtraction::configure(const ITensor *input1, const ITensor *in _impl->src_0 = input1; _impl->src_1 = input2; _impl->dst = output; - _impl->op = arm_compute::support::cpp14::make_unique(); + _impl->op = std::make_unique(); _impl->op->configure(input1->info(), input2->info(), output->info(), policy, act_info); } -- cgit v1.2.1