Skip to content

Commit

Permalink
test patch win c++17
Browse files Browse the repository at this point in the history
  • Loading branch information
StRigaud committed Aug 21, 2023
1 parent 75ba5d6 commit 8820b5e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion clic/src/tier3.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ exclude_labels_func(const Device::Pointer & device,
std::vector<unsigned int> labels_list(list->nbElements());
list->read(labels_list.data());
labels_list.front() = 0;
for (unsigned int count = 1; auto && label : labels_list)
unsigned int count = 1;
for (auto && label : labels_list)
{
if (label == 0)
{
Expand Down

0 comments on commit 8820b5e

Please sign in to comment.