12345678910111213141516 |
- #include "requires_arg.h"
- #include "mexErrMsgTxt.h"
- #include "../C_STR.h"
- IGL_INLINE void igl::matlab::requires_arg(const int i, const int nrhs, const char *name)
- {
- mexErrMsgTxt((i+1)<nrhs,
- C_STR("Parameter '"<<name<<"' requires argument"));
- }
|