Skip to content

Commit

Permalink
use auto*
Browse files Browse the repository at this point in the history
  • Loading branch information
duanmeng committed Dec 7, 2023
1 parent 6e334dc commit cf3a326
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion velox/exec/Spiller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ void Spiller::fillSpillRun(std::vector<char*>& rows) {
MicrosecondTimer timer(&execTimeUs);
spillRuns_[0].rows =
SpillRows(rows.begin(), rows.end(), spillRuns_[0].rows.get_allocator());
for (const auto& row : rows) {
for (const auto* row : rows) {
spillRuns_[0].numBytes += container_->rowSize(row);
}
}
Expand Down

0 comments on commit cf3a326

Please sign in to comment.