Skip to content

Commit

Permalink
Add const qualifier to some local variables in phase 3
Browse files Browse the repository at this point in the history
  • Loading branch information
rostislav authored and hoffmang9 committed Apr 2, 2021
1 parent 5cd2f0d commit f465238
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/phase3.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,8 @@ Phase3Results RunPhase3(
uint32_t log_num_buckets,
const bool show_progress)
{
uint8_t pos_size = k;
uint8_t line_point_size = 2 * k - 1;
uint8_t const pos_size = k;
uint8_t const line_point_size = 2 * k - 1;

std::vector<uint64_t> final_table_begin_pointers(12, 0);
final_table_begin_pointers[1] = header_size;
Expand Down

0 comments on commit f465238

Please sign in to comment.