| 194 | }; |
| 195 | |
| 196 | bool PrefixesValidMacroNamespace(std::string const& str) |
| 197 | { |
| 198 | return std::any_of( |
| 199 | std::begin(ValidPrefixes), std::end(ValidPrefixes), |
| 200 | [&str](char const* prefix) -> bool { return cmHasPrefix(prefix, str); }); |
| 201 | } |
| 202 | |
| 203 | bool IsValidMacroNamespace(std::string const& str) |
| 204 | { |
no test coverage detected
searching dependent graphs…