Skip to content

Commit

Permalink
fix macos
Browse files Browse the repository at this point in the history
  • Loading branch information
jinchengchenghh committed Dec 13, 2024
1 parent d441322 commit b67f20c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions velox/serializers/RowSerializer.h
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,7 @@ class RowSerializer : public IterativeVectorSerializer {

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

0 comments on commit b67f20c

Please sign in to comment.