Skip to content

Commit

Permalink
Merge pull request #45 from scalableminds/fix-matlab
Browse files Browse the repository at this point in the history
MATLAB: Add missing memory order parameter to MEX library
  • Loading branch information
amotta authored Nov 13, 2019
2 parents 55fe1f5 + 938f9f0 commit 2bdd750
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion matlab/rust/wkw_mex/src/wkw.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,5 +98,5 @@ pub fn mx_array_mut_to_wkwrap_mat<'a>(
// voxel type
let voxel_type = mx_class_id_to_voxel_type(unsafe { mxGetClassID(pm) })?;

wkwrap::Mat::new(buf, shape, voxel_size, voxel_type)
wkwrap::Mat::new(buf, shape, voxel_size, voxel_type, false)
}

0 comments on commit 2bdd750

Please sign in to comment.