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/Scheduler.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/runtime/Scheduler.cpp') diff --git a/src/runtime/Scheduler.cpp b/src/runtime/Scheduler.cpp index 5b3010b173..0713b9a2ad 100644 --- a/src/runtime/Scheduler.cpp +++ b/src/runtime/Scheduler.cpp @@ -24,7 +24,6 @@ #include "arm_compute/runtime/Scheduler.h" #include "arm_compute/core/Error.h" -#include "support/MemorySupport.h" #if ARM_COMPUTE_CPP_SCHEDULER #include "arm_compute/runtime/CPP/CPPScheduler.h" @@ -55,12 +54,12 @@ namespace std::map> init() { std::map> m; - m[Scheduler::Type::ST] = support::cpp14::make_unique(); + m[Scheduler::Type::ST] = std::make_unique(); #if defined(ARM_COMPUTE_CPP_SCHEDULER) - m[Scheduler::Type::CPP] = support::cpp14::make_unique(); + m[Scheduler::Type::CPP] = std::make_unique(); #endif // defined(ARM_COMPUTE_CPP_SCHEDULER) #if defined(ARM_COMPUTE_OPENMP_SCHEDULER) - m[Scheduler::Type::OMP] = support::cpp14::make_unique(); + m[Scheduler::Type::OMP] = std::make_unique(); #endif // defined(ARM_COMPUTE_OPENMP_SCHEDULER) return m; -- cgit v1.2.1