bump simplecpp

This commit is contained in:
Daniel Marjamäki 2016-07-23 18:04:23 +02:00
parent 88d1911538
commit 2609d11e1d
1 changed files with 4 additions and 0 deletions

View File

@ -839,6 +839,10 @@ public:
}
tok = tok->next;
if (tok == endToken) {
output->push_back(new Token(*tok->previous));
break;
}
if (tok->op == '#') {
// A##B => AB
Token *A = output->end();