Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
zanmato1984 committed Jan 26, 2024
1 parent 840ffc5 commit 5fea9bb
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions cpp/src/arrow/compute/key_hash_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -254,8 +254,7 @@ TEST(VectorHash, BasicLargeString) { RunTestVectorHash<LargeStringType>(); }

void HashFixedLengthFrom(int key_length, int num_rows, int start_row) {
int num_rows_to_hash = num_rows - start_row;
auto num_bytes_aligned =
arrow::bit_util::RoundUpToMultipleOf64(key_length * num_rows);
auto num_bytes_aligned = arrow::bit_util::RoundUpToMultipleOf64(key_length * num_rows);

const auto hardware_flags_for_testing = HardwareFlagsForTesting();
ASSERT_GT(hardware_flags_for_testing.size(), 0);
Expand Down

0 comments on commit 5fea9bb

Please sign in to comment.