aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/CL/UNIT/TensorAllocator.cpp
diff options
context:
space:
mode:
authorGeorgios Pinitas <georgios.pinitas@arm.com>2021-04-14 19:03:46 +0100
committerGeorgios Pinitas <georgios.pinitas@arm.com>2021-04-14 19:50:25 +0000
commitc77132168f47f89118fd285011d84a470a49fc4a (patch)
treeeb4f293ebef1c190ad884b461aa3979bade75b1b /tests/validation/CL/UNIT/TensorAllocator.cpp
parent142e4ca997e7f8cc8582526b5b0e264f2322da3e (diff)
downloadComputeLibrary-c77132168f47f89118fd285011d84a470a49fc4a.tar.gz
Removes redundant std::move of temporary
Signed-off-by: Georgios Pinitas <georgios.pinitas@arm.com> Change-Id: Iff8d463eb5575dc7ae55a155e448488495298e16 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5431 Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'tests/validation/CL/UNIT/TensorAllocator.cpp')
-rw-r--r--tests/validation/CL/UNIT/TensorAllocator.cpp2
1 files changed, 1 insertions, 1 deletions
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
{