| 3015 | } |
| 3016 | |
| 3017 | static const simplecpp::Token *gotoNextLine(const simplecpp::Token *tok) |
| 3018 | { |
| 3019 | const unsigned int line = tok->location.line; |
| 3020 | const unsigned int file = tok->location.fileIndex; |
| 3021 | while (tok && tok->location.line == line && tok->location.fileIndex == file) |
| 3022 | tok = tok->next; |
| 3023 | return tok; |
| 3024 | } |
| 3025 | |
| 3026 | #ifdef SIMPLECPP_WINDOWS |
| 3027 |