# | Line 272 | Line 272 | LineDirective | |
---|---|---|
272 | } | |
273 | ("line")? // this would be for if the directive started "#line" | |
274 | (Space)+ | |
275 | < | n:Decimal { setLine(oopse::lexi_cast<int>(n->getText()) - 1); } |
275 | > | n:Decimal { setLine(OpenMD::lexi_cast<int>(n->getText()) - 1); } |
276 | (Space)+ | |
277 | (sl:StringLiteral) {std::string filename = sl->getText().substr(1,sl->getText().length()-2); observer->notify(filename);} | |
278 | ((Space)+ Decimal)* // To support cpp flags (GNU) |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |