Skip to content

Commit

Permalink
fix casing typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jgillis committed Mar 22, 2024
1 parent 479cd6f commit 95f7522
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion matlab/include/mex.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ int mex_Export mexEvalString(const char *);
void mex_Export mexWarnMsgIdAndTxt(const char *, const char *, ...);
int mex_Export mexPrintf(const char*, ...);
void mex_Export mexLock(void);
void mex_Export mexUnLock(void);
void mex_Export mexUnlock(void);
int mex_Export mexAtExit(void (*)(void));
void mex_Export mexMakeArrayPersistent(mxArray *);

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

0 comments on commit 95f7522

Please sign in to comment.