Skip to content

Commit

Permalink
persistance
Browse files Browse the repository at this point in the history
  • Loading branch information
jgillis committed Mar 22, 2024
1 parent 61004ab commit 78a27f0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions matlab/include/mex.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ void mex_Export mexWarnMsgIdAndTxt(const char *, const char *, ...);
int mex_Export mexPrintf(const char*, ...);
void mex_Export mexLock(void);
int mex_Export mexAtExit(void (*)(void));
void mex_Export mexMakeArrayPersistent(mxArray *);

}

Expand Down
3 changes: 2 additions & 1 deletion matlab/src/mex.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ void mex_Export mexWarnMsgIdAndTxt(const char *, const char *, ...) {}
int mex_Export mexPrintf(const char*, ...) { return 0; }
void mex_Export mexLock(void) {}
int mex_Export mexAtExit(void (*)(void)) { return 0; }
int mex_Export mexEvalString(const char *) { return 0; }
int mex_Export mexEvalString(const char *) { return 0; }
void mex_Export mexMakeArrayPersistent(mxArray *) {}

0 comments on commit 78a27f0

Please sign in to comment.