Changeset 16230
- Timestamp:
- 09/23/13 10:16:06 (11 years ago)
- Location:
- issm/trunk-jpl/src/wrappers
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/wrappers/matlab/include/wrapper_macros.h
r14291 r16230 26 26 }\ 27 27 catch (exception &e){\ 28 mexErrMsgTxt(e xprintf("Standard exception: %s\n",e.what()));\28 mexErrMsgTxt(e.what());\ 29 29 }\ 30 30 catch(...){\ -
issm/trunk-jpl/src/wrappers/python/include/wrapper_macros.h
r16144 r16230 31 31 } \ 32 32 catch (exception &e){\ 33 PyErr_SetString(PyExc_TypeError,e xprintf("Standard exception: %s\n",e.what()));\33 PyErr_SetString(PyExc_TypeError,e.what());\ 34 34 return NULL;\ 35 35 }\
Note:
See TracChangeset
for help on using the changeset viewer.