Skip to content

Commit

Permalink
Fix SchemaCStruct proxy registeration
Browse files Browse the repository at this point in the history
  • Loading branch information
sgilmore10 committed May 10, 2024
1 parent c3e6119 commit 078159c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion matlab/src/cpp/arrow/matlab/proxy/factory.cc
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ libmexclass::proxy::MakeResult Factory::make_proxy(
REGISTER_PROXY(arrow.io.csv.proxy.TableWriter , arrow::matlab::io::csv::proxy::TableWriter);
REGISTER_PROXY(arrow.io.csv.proxy.TableReader , arrow::matlab::io::csv::proxy::TableReader);
REGISTER_PROXY(arrow.c.proxy.ArrayCStruct , arrow::matlab::c::proxy::ArrayCStruct);
REGISTER_PROXY(arrow.c.proxy.arrow.SchemaCStruct, arrow::matlab::c::proxy::SchemaCStruct);
REGISTER_PROXY(arrow.c.proxy.SchemaCStruct, arrow::matlab::c::proxy::SchemaCStruct);
// clang-format on
return libmexclass::error::Error{error::UNKNOWN_PROXY_ERROR_ID,
"Did not find matching C++ proxy for " + class_name};
Expand Down

0 comments on commit 078159c

Please sign in to comment.