From c77132168f47f89118fd285011d84a470a49fc4a Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Wed, 14 Apr 2021 19:03:46 +0100 Subject: Removes redundant std::move of temporary Signed-off-by: Georgios Pinitas Change-Id: Iff8d463eb5575dc7ae55a155e448488495298e16 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5431 Reviewed-by: Michele Di Giorgio Tested-by: Arm Jenkins --- tests/validation/CL/UNIT/TensorAllocator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/validation/CL/UNIT/TensorAllocator.cpp') diff --git a/tests/validation/CL/UNIT/TensorAllocator.cpp b/tests/validation/CL/UNIT/TensorAllocator.cpp index 4ebd521bf0..f4231b94a3 100644 --- a/tests/validation/CL/UNIT/TensorAllocator.cpp +++ b/tests/validation/CL/UNIT/TensorAllocator.cpp @@ -84,7 +84,7 @@ public: { // Needs to be implemented as is the one that is used internally by the CLTensorAllocator ++_n_calls; - return std::move(_backend_allocator.make_region(size, alignment)); + return _backend_allocator.make_region(size, alignment); } int get_n_calls() const { -- cgit v1.2.1