Generate parse tables and code using pre-processed grammars

This commit is contained in:
Max Brunsfeld 2014-01-03 22:42:05 -08:00
parent 2621f06315
commit 2afd8843dc
27 changed files with 272 additions and 285 deletions

View file

@ -2,6 +2,11 @@
int main(int argc, char *argv[])
{
char *args[] = {nullptr, (char *)"--no-color"};
return bandit::run(2, args);
const char *args[] = {
"",
"--no-color",
"--only="
"",
};
return bandit::run(4, const_cast<char **>(args));
}