``` #define CHK_MB_ERR_RET_MB(A,B) if (moab::MB_SUCCESS != (B)) { \ message << (A) << (B) << std::endl; \ return rval; \ } ``` Wont return A or B instead of rval, which is not in the parameter list? Although, it does not report error during compiling.
Wont return A or B instead of rval, which is not in the parameter list?
Although, it does not report error during compiling.