| 807 | } |
| 808 | |
| 809 | static std::string_view getFirstNonEmptyToken( |
| 810 | const std::vector<std::string>& tokens) { |
| 811 | for (const auto& token : tokens) { |
| 812 | if (token != " ") return token; |
| 813 | } |
| 814 | static constexpr std::string_view kEmpty; |
| 815 | return kEmpty; |
| 816 | } |
| 817 | |
| 818 | std::pair<bool, std::string> PreprocessFile::evaluateMacro_( |
| 819 | std::string_view name, std::vector<std::string>& actual_args, |