Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jackgerrits committed Oct 6, 2022
1 parent 6cee267 commit 81ff7ba
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions vowpalwabbit/core/src/parse_args.cc
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,7 @@ uint64_t hash_file_contents(VW::io::reader* file_reader)
if (bytes_read <= 0) { break; }
for (ssize_t i = 0; i < bytes_read; i++)
{
if (buf[i] == '\r')
{
continue;
}
if (buf[i] == '\r') { continue; }
hash *= 341789041;
hash += static_cast<uint64_t>(buf[i]);
}
Expand Down

0 comments on commit 81ff7ba

Please sign in to comment.