Skip to content

Commit

Permalink
fix: Build on macOS (#11858)
Browse files Browse the repository at this point in the history
Summary:
A follow-up fix PR for #11840

Pull Request resolved: #11858

Reviewed By: spershin

Differential Revision: D67224012

Pulled By: zacw7

fbshipit-source-id: 49398f6c48aeb5876c80867c819e45fbf651c3db
  • Loading branch information
zuyu authored and facebook-github-bot committed Dec 14, 2024
1 parent 19c5771 commit abc54d9
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 abc54d9

Please sign in to comment.