deleted unused code

This commit is contained in:
hyunghwan.chung 2018-12-21 16:34:23 +00:00
parent 71a617b95b
commit b55b63cd51

View File

@ -1240,17 +1240,9 @@ static MOO_INLINE int print_formatted (moo_t* moo, moo_ooi_t nargs, moo_fmtout_t
case 'O': /* object - ignore precision, width, adjustment */ case 'O': /* object - ignore precision, width, adjustment */
GET_NEXT_ARG_TO (moo, nargs, &arg_state, arg); GET_NEXT_ARG_TO (moo, nargs, &arg_state, arg);
/*if (print_object(moo, (data->mask & ~MOO_LOG_PREFER_JSON), arg, outbfmt) <= -1) goto oops;*/
if (print_object(moo, data->mask, arg, outbfmt) <= -1) goto oops; if (print_object(moo, data->mask, arg, outbfmt) <= -1) goto oops;
break; break;
#if 0
case 'J':
GET_NEXT_ARG_TO (moo, nargs, &arg_state, arg);
if (print_object(moo, (data->mask | MOO_LOG_PREFER_JSON), arg, outbfmt) <= -1) goto oops;
break;
#endif
print_integer: print_integer:
{ {
const moo_ooch_t* nsptr; const moo_ooch_t* nsptr;