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/GLES_COMPUTE/functions/GCConcatenateLayer.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/runtime/GLES_COMPUTE/functions/GCConcatenateLayer.cpp') diff --git a/src/runtime/GLES_COMPUTE/functions/GCConcatenateLayer.cpp b/src/runtime/GLES_COMPUTE/functions/GCConcatenateLayer.cpp index 807412eb17..2c21d81e17 100644 --- a/src/runtime/GLES_COMPUTE/functions/GCConcatenateLayer.cpp +++ b/src/runtime/GLES_COMPUTE/functions/GCConcatenateLayer.cpp @@ -31,8 +31,6 @@ #include "arm_compute/runtime/GLES_COMPUTE/GCScheduler.h" #include "src/core/helpers/AutoConfiguration.h" -#include "support/MemorySupport.h" - namespace arm_compute { GCConcatenateLayer::GCConcatenateLayer() @@ -61,7 +59,7 @@ void GCConcatenateLayer::configure(std::vector inputs_vector, IGCTe { for(unsigned int i = 0; i < _num_inputs; ++i) { - auto kernel = support::cpp14::make_unique(); + auto kernel = std::make_unique(); kernel->configure(inputs_vector.at(i), offset, output); offset += inputs_vector.at(i)->info()->dimension(axis); _concat_kernels.emplace_back(std::move(kernel)); -- cgit v1.2.1