aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Bentham <matthew.bentham@arm.com>2020-06-01 15:53:21 +0100
committerMatthew Bentham <matthew.bentham@arm.com>2020-06-01 16:00:06 +0000
commit6d76e4d4b6e7d5e44d2cc9368d53a996d10672e4 (patch)
treeea4b3348f36ede7cf4d87167f8204d1e932ab86e
parentdd717c3150b813da403fbfd38e1200936998824a (diff)
downloadComputeLibrary-6d76e4d4b6e7d5e44d2cc9368d53a996d10672e4.tar.gz
Silence clang++-10 warning about copying iterators
Change-Id: I423b11bdf51ea544dd5c3c9c59d93475e09356ca Signed-off-by: Matthew Bentham <matthew.bentham@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/3287 Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
-rw-r--r--tests/framework/TestFilter.cpp2
-rw-r--r--tests/validation/reference/NonMaxSuppression.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/framework/TestFilter.cpp b/tests/framework/TestFilter.cpp
index 279f0193ca..cd4aa38aa1 100644
--- a/tests/framework/TestFilter.cpp
+++ b/tests/framework/TestFilter.cpp
@@ -57,7 +57,7 @@ bool TestFilter::is_selected(const TestInfo &info) const
{
bool found = false;
- for(const auto range : _id_filter)
+ for(const auto &range : _id_filter)
{
if(range.first <= info.id && info.id <= range.second)
{
diff --git a/tests/validation/reference/NonMaxSuppression.cpp b/tests/validation/reference/NonMaxSuppression.cpp
index 8fc370b7af..9a638ce042 100644
--- a/tests/validation/reference/NonMaxSuppression.cpp
+++ b/tests/validation/reference/NonMaxSuppression.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2019 ARM Limited.
+ * Copyright (c) 2019-2020 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -143,7 +143,7 @@ SimpleTensor<int> non_max_suppression(const SimpleTensor<float> &bboxes, const S
const size_t output_size = std::min(static_cast<size_t>(max_output_size), num_boxes);
const std::vector<CandidateBox> candidates_vector = get_candidates(scores, score_threshold);
std::vector<int> selected;
- for(const auto c : candidates_vector)
+ for(const auto &c : candidates_vector)
{
if(selected.size() == output_size)
{