Skip to content

Commit

Permalink
Format C++
Browse files Browse the repository at this point in the history
  • Loading branch information
amol- committed Oct 17, 2024
1 parent a07ad19 commit 7ee000a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cpp/src/arrow/array/util.cc
Original file line number Diff line number Diff line change
Expand Up @@ -925,7 +925,8 @@ Result<std::shared_ptr<Array>> MakeMaskArray(const std::vector<int64_t>& indices
auto i = indices.begin();
for (int64_t builder_i = 0; builder_i < length; builder_i++) {
if (i == indices_end) {
RETURN_NOT_OK(builder.AppendValues(static_cast<int64_t>(length - builder.length()), false));
RETURN_NOT_OK(
builder.AppendValues(static_cast<int64_t>(length - builder.length()), false));
break;
} else if (builder_i == *i) {
builder.UnsafeAppend(true);
Expand Down

0 comments on commit 7ee000a

Please sign in to comment.