| 572 | } |
| 573 | |
| 574 | static bool getConfigsElseIsFalse(const std::vector<std::string> &configs_if, const std::string &userDefines) |
| 575 | { |
| 576 | return std::any_of(configs_if.cbegin(), configs_if.cend(), |
| 577 | [&](const std::string &cfg) { |
| 578 | return hasDefine(userDefines, cfg); |
| 579 | }); |
| 580 | } |
| 581 | |
| 582 | static const simplecpp::Token *gotoEndIf(const simplecpp::Token *cmdtok) |
| 583 | { |
no test coverage detected