Skip to content

Commit

Permalink
Clang warnings about unused parameters.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alzathar committed Nov 8, 2016
1 parent 04a02f1 commit a69c37e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Lib/matlab/matlabrun.swg
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ SWIG_Matlab_CallInterpEx(int nlhs, mxArray *plhs[], int nrhs,

/* Convert a packed value value */
SWIGRUNTIME int
SWIG_Matlab_ConvertPacked(mxArray* pm, void *ptr, size_t sz, swig_type_info *ty) {
SWIG_Matlab_ConvertPacked(mxArray* /*pm*/, void* /*ptr*/, size_t /*sz*/, swig_type_info* /*ty*/) {
mexErrMsgIdAndTxt("SWIG:ConvertPacked","Not implemented");
return SWIG_ERROR;
}
Expand Down Expand Up @@ -221,7 +221,7 @@ SWIGRUNTIME mxArray* SWIG_Matlab_NewPointerObj(void *ptr, swig_type_info *type,
/* Create a new packed object */

SWIGRUNTIMEINLINE mxArray*
SWIG_Matlab_NewPackedObj(void *ptr, size_t sz, swig_type_info *type) {
SWIG_Matlab_NewPackedObj(void* /*ptr*/, size_t /*sz*/, swig_type_info* /*type*/) {
mexErrMsgIdAndTxt("SWIG:NewPackedOb","Not implemented");
return 0;
}
Expand Down

0 comments on commit a69c37e

Please sign in to comment.