We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0882516 commit a351f55Copy full SHA for a351f55
matlab/src/cpp/arrow/matlab/c/proxy/array.cc
@@ -31,7 +31,9 @@ namespace arrow::matlab::c::proxy {
31
}
32
};
33
34
- Array::Array() : arrowArray{ArrowArrayPtr(new ArrowArray(), ArrowArrayDeleter())} {}
+ Array::Array() : arrowArray{ArrowArrayPtr(new ArrowArray(), ArrowArrayDeleter())} {
35
+ REGISTER_METHOD(Array, getAddress);
36
+ }
37
38
Array::~Array() {
39
if (arrowArray && arrowArray->release != nullptr) {
@@ -52,5 +54,4 @@ namespace arrow::matlab::c::proxy {
52
54
context.outputs[0] = factory.createScalar(address);
53
55
56
-} // namespace arrow::matlab::c::proxy
-
57
+} // namespace arrow::matlab::c::proxy
0 commit comments