| 620 | } |
| 621 | |
| 622 | static void portabilityBackslash(simplecpp::OutputList *outputList, const simplecpp::Location &location) |
| 623 | { |
| 624 | if (!outputList) |
| 625 | return; |
| 626 | simplecpp::Output err{ |
| 627 | simplecpp::Output::PORTABILITY_BACKSLASH, |
| 628 | location, |
| 629 | "Combination 'backslash space newline' is not portable." |
| 630 | }; |
| 631 | outputList->emplace_back(std::move(err)); |
| 632 | } |
| 633 | |
| 634 | static bool isStringLiteralPrefix(const std::string &str) |
| 635 | { |