Write section 3 user-defined code to lex.yy.cpp
| 2442 | |
| 2443 | /// Write section 3 user-defined code to lex.yy.cpp |
| 2444 | void Reflex::write_section_3() |
| 2445 | { |
| 2446 | if (!section_3.empty()) |
| 2447 | { |
| 2448 | write_banner("SECTION 3: user code"); |
| 2449 | write_code(section_3); |
| 2450 | } |
| 2451 | } |
| 2452 | |
| 2453 | /// Write lines of code to lex.yy.cpp annotated with #line source info |
| 2454 | void Reflex::write_code(const Codes& codes) |