Skip to content

Commit

Permalink
fix: Fix Macos build
Browse files Browse the repository at this point in the history
  • Loading branch information
jinchengchenghh committed Dec 14, 2024
1 parent 19c5771 commit b8ed0c4
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 b8ed0c4

Please sign in to comment.