natsuki
New Member
- Messages
- 112
- Reaction score
- 0
- Points
- 0
case 'h': // halt on error
t.setErrorType(M_ERROR_HALT);
compiletype = OPT_COMPILE_BUILD;
break;
case 'n': // no halt on error
t.setErrorType(M_ERROR_NO_HALT);
compiletype = OPT_COMPILE_BUILD;
break;
case 'c': // only check, don't compile
t.setErrorType(M_ERROR_CHECK);
compiletype = OPT_COMPILE_CHECK;
break;
t.setErrorType(M_ERROR_HALT);
compiletype = OPT_COMPILE_BUILD;
break;
case 'n': // no halt on error
t.setErrorType(M_ERROR_NO_HALT);
compiletype = OPT_COMPILE_BUILD;
break;
case 'c': // only check, don't compile
t.setErrorType(M_ERROR_CHECK);
compiletype = OPT_COMPILE_CHECK;
break;