Skip to content

Commit a351f55

Browse files
committed
Register getAddress proxy method
1 parent 0882516 commit a351f55

File tree

1 file changed

+4
-3
lines changed
  • matlab/src/cpp/arrow/matlab/c/proxy

1 file changed

+4
-3
lines changed

matlab/src/cpp/arrow/matlab/c/proxy/array.cc

+4-3
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ namespace arrow::matlab::c::proxy {
3131
}
3232
};
3333

34-
Array::Array() : arrowArray{ArrowArrayPtr(new ArrowArray(), ArrowArrayDeleter())} {}
34+
Array::Array() : arrowArray{ArrowArrayPtr(new ArrowArray(), ArrowArrayDeleter())} {
35+
REGISTER_METHOD(Array, getAddress);
36+
}
3537

3638
Array::~Array() {
3739
if (arrowArray && arrowArray->release != nullptr) {
@@ -52,5 +54,4 @@ namespace arrow::matlab::c::proxy {
5254
context.outputs[0] = factory.createScalar(address);
5355
}
5456

55-
} // namespace arrow::matlab::c::proxy
56-
57+
} // namespace arrow::matlab::c::proxy

0 commit comments

Comments
 (0)