Commit 2673694c authored by Davis King's avatar Davis King

Fixed cell arrays of complex types not binding correctly.

parent a6abf8c6
......@@ -348,6 +348,24 @@ namespace mex_binding
T& arg
);
void validate_and_populate_arg(
long arg_idx,
const mxArray *prhs,
matlab_struct& arg
);
void validate_and_populate_arg(
long arg_idx,
const mxArray *prhs,
matlab_object& arg
);
void validate_and_populate_arg(
long arg_idx,
const mxArray *prhs,
std::string& arg
);
// -------------------------------------------------------
template <typename T>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment