Skip to content

Commit

Permalink
almost always prefer auto
Browse files Browse the repository at this point in the history
  • Loading branch information
frederic-mahe committed Jan 2, 2025
1 parent a112de0 commit 07c5aea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/derep_prefix.cc
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ auto derep_compare_prefix(const void * a, const void * b) -> int
return -1;
}

int const result = std::strcmp(db_getheader(lhs->seqno_first),
auto const result = std::strcmp(db_getheader(lhs->seqno_first),
db_getheader(rhs->seqno_first));
if (result != 0)
{
Expand Down

0 comments on commit 07c5aea

Please sign in to comment.