Changed argument order of many functions

This commit is contained in:
Daniel Holden
2013-11-10 12:52:01 +00:00
parent f5347e550b
commit 82aa2eefc7
3 changed files with 33 additions and 33 deletions

View File

@@ -16,7 +16,7 @@ void test_ident(void) {
mpc_parser_t* Ident = mpc_enclose(
mpc_and(2, mpcf_astrfold,
mpc_or(2, mpc_alpha(), mpc_underscore()),
mpc_many1(mpc_or(3, mpc_alpha(), mpc_underscore(), mpc_digit()), mpcf_strfold),
mpc_many1(mpcf_strfold, mpc_or(3, mpc_alpha(), mpc_underscore(), mpc_digit())),
free),
free
);