Skip to content

Commit

Permalink
Register getType Proxy method.
Browse files Browse the repository at this point in the history
  • Loading branch information
kevingurney committed Oct 4, 2023
1 parent e7050c3 commit 4455f09
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion matlab/src/cpp/arrow/matlab/type/proxy/list_type.cc
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@

namespace arrow::matlab::type::proxy {

ListType::ListType(std::shared_ptr<arrow::ListType> list_type) : Type(std::move(list_type)) {}
ListType::ListType(std::shared_ptr<arrow::ListType> list_type) : Type(std::move(list_type)) {
REGISTER_METHOD(ListType, getType);
}

void ListType::getType(libmexclass::proxy::method::Context& context) {
namespace mda = ::matlab::data;
Expand Down

0 comments on commit 4455f09

Please sign in to comment.