| 1292 | |
| 1293 | namespace { |
| 1294 | inline bool CheckStringParametersEx(cm::GenEx::Evaluation* eval, |
| 1295 | GeneratorExpressionContent const* cnt, |
| 1296 | cm::string_view option, std::size_t count, |
| 1297 | int required = 1, bool exactly = true) |
| 1298 | { |
| 1299 | return CheckGenExParameters(eval, cnt, "STRING"_s, option, count, required, |
| 1300 | exactly); |
| 1301 | } |
| 1302 | inline bool CheckStringParameters(cm::GenEx::Evaluation* eval, |
| 1303 | GeneratorExpressionContent const* cnt, |
| 1304 | cm::string_view option, Arguments args, |
no test coverage detected
searching dependent graphs…