Skip to content

Commit

Permalink
fix: Fix compile issue in rowSerializer
Browse files Browse the repository at this point in the history
Summary: As title

Differential Revision: D67232576
  • Loading branch information
yuandagits authored and facebook-github-bot committed Dec 14, 2024
1 parent 19c5771 commit 106e77a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion velox/serializers/RowSerializer.h
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ class RowSerializer : public IterativeVectorSerializer {

void flush(OutputStream* stream) override {
for (const auto& buffer : buffers_) {
stream->write(buffer->asMutable<char>(), buffer->size());
stream->write(buffer->template asMutable<char>(), buffer->size());
}
buffers_.clear();
}
Expand Down

0 comments on commit 106e77a

Please sign in to comment.