| 632 | } |
| 633 | |
| 634 | static bool isStringLiteralPrefix(const std::string &str) |
| 635 | { |
| 636 | return str == "u" || str == "U" || str == "L" || str == "u8" || |
| 637 | str == "R" || str == "uR" || str == "UR" || str == "LR" || str == "u8R"; |
| 638 | } |
| 639 | |
| 640 | void simplecpp::TokenList::lineDirective(unsigned int fileIndex_, unsigned int line, Location &location) |
| 641 | { |