Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
small fix
  • Loading branch information
SandrineP committed Apr 2, 2026
commit 55518b3e717cb71233de9ba04063501513c9224c
2 changes: 1 addition & 1 deletion src/wrapper/repository_wrapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ size_t repository_wrapper::shallow_depth_from_head() const
if (parent_list.size() > 0u)
{
has_parent = true;
for (size_t j = 0u; parent_list.size(); j++)
for (size_t j = 0u; j < parent_list.size(); ++j)
{
const commit_wrapper& c = parent_list[j];
temp_commits_list.push_back(std::move(const_cast<commit_wrapper&>(c)));
Expand Down