Skip to content

Commit

Permalink
fix ++iter bug
Browse files Browse the repository at this point in the history
  • Loading branch information
sneaxiy committed Dec 12, 2023
1 parent c0e4c7c commit 33495cc
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test_aadiff.cu
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,8 @@ std::vector<std::vector<int>> FindEqualGroup(const std::vector<std::vector<T>> &
if (is_equal) {
result[first_value].insert(*iter);
iter = left.erase(iter);
} else {
++iter;
}
}
}
Expand Down

0 comments on commit 33495cc

Please sign in to comment.