Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Wumpf committed Jul 26, 2023
1 parent cd8ee5c commit a012c8c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion examples/cpp/minimal/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ arrow::Result<std::shared_ptr<arrow::Table>> points2(size_t num_points, const fl
ARROW_ASSIGN_OR_RAISE(auto builder, rr::components::Point2D::new_arrow_array_builder(pool));
ARROW_RETURN_NOT_OK(rr::components::Point2D::fill_arrow_array_builder(
builder.get(),
(const rr::components::Point2D*)xy, // TODO(andreas): Hack to get Points2D C-style array in an easy fashion
(const rr::components::Point2D*)
xy, // TODO(andreas): Hack to get Points2D C-style array in an easy fashion
num_points
));

Expand Down

0 comments on commit a012c8c

Please sign in to comment.