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/Utils.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'utils/Utils.h') diff --git a/utils/Utils.h b/utils/Utils.h index e44d978b24..b10d18aca2 100644 --- a/utils/Utils.h +++ b/utils/Utils.h @@ -38,7 +38,6 @@ #pragma GCC diagnostic ignored "-Wstrict-overflow" #include "libnpy/npy.hpp" #pragma GCC diagnostic pop -#include "support/MemorySupport.h" #include "support/StringSupport.h" #ifdef ARM_COMPUTE_CL @@ -54,6 +53,7 @@ #include #include #include +#include #include #include #include @@ -110,7 +110,7 @@ int run_example(int argc, char **argv, std::unique_ptr example); template int run_example(int argc, char **argv) { - return run_example(argc, argv, support::cpp14::make_unique()); + return run_example(argc, argv, std::make_unique()); } /** Draw a RGB rectangular window for the detected object -- cgit v1.2.1