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 --- tests/validate_examples/graph_validate_utils.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'tests/validate_examples/graph_validate_utils.h') diff --git a/tests/validate_examples/graph_validate_utils.h b/tests/validate_examples/graph_validate_utils.h index 36134a4cea..f6f47cc2c3 100644 --- a/tests/validate_examples/graph_validate_utils.h +++ b/tests/validate_examples/graph_validate_utils.h @@ -337,11 +337,11 @@ inline std::unique_ptr get_accessor(const TensorParams & { if(!tensor.npy.empty()) { - return arm_compute::support::cpp14::make_unique(tensor.npy); + return std::make_unique(tensor.npy); } else { - return arm_compute::support::cpp14::make_unique(lower, upper, seed); + return std::make_unique(lower, upper, seed); } } @@ -607,17 +607,17 @@ inline std::unique_ptr get_verify_accessor(ExampleParams { case DataType::QASYMM8: { - return arm_compute::support::cpp14::make_unique>( + return std::make_unique>( params); } case DataType::F16: { - return arm_compute::support::cpp14::make_unique>( + return std::make_unique>( params); } case DataType::F32: { - return arm_compute::support::cpp14::make_unique>( + return std::make_unique>( params); } default: -- cgit v1.2.1