Skip to content

Commit

Permalink
Minor bugfix - forgot the terminate function in Matlab template class
Browse files Browse the repository at this point in the history
  • Loading branch information
hkhauke committed Feb 9, 2024
1 parent 2f6613a commit bb81281
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,16 @@ class CjvxMexCallsProfileTpl : public CjvxMexCallsTpl<T>, public CjvxMexCallsPro
res = local_deallocate_profiling();
}

CjvxMexCalls::postprocess_connect_icon_enter(_common_set_icon.theData_in);

JVX_SAFE_DELETE_2DFIELD(dbgFldCopyInputs, _common_set_icon.theData_in->con_params.number_channels);

// Ignore all return values - if these functions fail we have a more severe problem!!
res = T::postprocess_connect_icon(JVX_CONNECTION_FEEDBACK_CALL(fdb));

res = local_postprocess_connect_icon(JVX_CONNECTION_FEEDBACK_CALL(fdb));

res = T::postprocess_connect_icon(JVX_CONNECTION_FEEDBACK_CALL(fdb));

res = CjvxMexCalls::postprocess_connect_icon_leave(_common_set_icon.theData_in);

return res;
Expand Down

0 comments on commit bb81281

Please sign in to comment.