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 --- utils/command_line/CommandLineParser.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'utils/command_line') diff --git a/utils/command_line/CommandLineParser.h b/utils/command_line/CommandLineParser.h index 5881723da8..e8fabc4251 100644 --- a/utils/command_line/CommandLineParser.h +++ b/utils/command_line/CommandLineParser.h @@ -26,11 +26,11 @@ #include "Option.h" #include "arm_compute/core/utils/misc/Utility.h" -#include "support/MemorySupport.h" #include #include #include +#include #include #include #include @@ -102,14 +102,14 @@ private: template inline T *CommandLineParser::add_option(const std::string &name, As &&... args) { - auto result = _options.emplace(name, support::cpp14::make_unique(name, std::forward(args)...)); + auto result = _options.emplace(name, std::make_unique(name, std::forward(args)...)); return static_cast(result.first->second.get()); } template inline T *CommandLineParser::add_positional_option(As &&... args) { - _positional_options.emplace_back(support::cpp14::make_unique(std::forward(args)...)); + _positional_options.emplace_back(std::make_unique(std::forward(args)...)); return static_cast(_positional_options.back().get()); } -- cgit v1.2.1