Skip to content

Commit

Permalink
Update matlab/src/cpp/arrow/matlab/c/proxy/array_importer.cc
Browse files Browse the repository at this point in the history
Co-authored-by: Sutou Kouhei <[email protected]>
  • Loading branch information
kevingurney and kou authored May 20, 2024
1 parent bdc9d67 commit 7b95d33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion matlab/src/cpp/arrow/matlab/c/proxy/array_importer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ void ArrayImporter::import(libmexclass::proxy::method::Context& context) {
const auto arrow_array_address = uint64_t(arrow_array_address_mda[0]);
const auto arrow_schema_address = uint64_t(arrow_schema_address_mda[0]);

struct ArrowArray* arrow_array =
auto arrow_array =
reinterpret_cast<struct ArrowArray*>(arrow_array_address);
auto arrow_schema =
reinterpret_cast<struct ArrowSchema*>(arrow_schema_address);
Expand Down

0 comments on commit 7b95d33

Please sign in to comment.