File tree Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -197,15 +197,9 @@ c99:
197197 -e 's/(mp_i64)((mp_u64)1<<63)/INT64_MIN/g' \
198198 -e 's/(mp_i64)(((mp_u64)1<<63)-1)/INT64_MAX/g' \
199199 -e 's/((size_t)-1)/SIZE_MAX/g' \
200- <<<<<<< HEAD
201- -e 's/MP_\(PRI[ioux]64\)/\1/g' \
202- ||||||| constructed merge base
203- -e 's/MP_\(PRI[iux]64\)/\1/g' \
204- ====== =
205200 -e 's/__intmax_t/intmax_t/g' \
206201 -e 's/__uintmax_t/uintmax_t/g' \
207202 -e 's/MP_\(PRI[iuox]64\)/\1/g' \
208- >>>>>>> Extended c89 handling
209203 -e 's/mp_u\([0-9][0-9]*\)/uint\1_t/g' \
210204 -e 's/mp_i\([0-9][0-9]*\)/int\1_t/g' \
211205 -e 's/MP_FUNCTION_NAME/__func__/g' \
Original file line number Diff line number Diff line change 1818
1919/* Step to the next character, throw error if there is none */
2020#define LTM_NEXT_ERROR (x ) do{(x)++;if(*(x) == '\0'){goto LTM_ERR;}}while(0)
21- /* Step to the next character, got to end if there is none */
21+ /* Step to the next character, go to end if there is none */
2222#define LTM_NEXT (x ) do{(x)++;if(*(x) == '\0')break;}while(0)
2323
2424/* The size of the string "%..." is not very large */
You can’t perform that action at this time.
0 commit comments