Skip to content

Commit

Permalink
Fixed a matlab compilation issue
Browse files Browse the repository at this point in the history
  • Loading branch information
pariterre committed Mar 5, 2024
1 parent 8cc9208 commit de2d59c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion binding/matlab/Matlab_Mesh.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ void Matlab_Mesh( int, mxArray *plhs[],

} else { // Si on a demande un segment precis
std::vector<BIORBD_NAMESPACE::utils::Vector3d> Mesh_tp(model->meshPoints(Q,
static_cast<unsigned int>(idx)));
static_cast<size_t>(idx)));

// Create a matrix for the return argument
plhs[0] = mxCreateDoubleMatrix(3, Mesh_tp.size(), mxREAL);
Expand Down

0 comments on commit de2d59c

Please sign in to comment.