| 435 | } |
| 436 | |
| 437 | bool PresetVectorOneOrMoreStringHelper(std::vector<std::string>& out, |
| 438 | Json::Value const* value, |
| 439 | cmJSONState* state) |
| 440 | { |
| 441 | out.clear(); |
| 442 | if (!value) { |
| 443 | return true; |
| 444 | } |
| 445 | |
| 446 | if (value->isString()) { |
| 447 | out.push_back(value->asString()); |
| 448 | return true; |
| 449 | } |
| 450 | |
| 451 | return PresetVectorStringHelper(out, value, state); |
| 452 | } |
| 453 | |
| 454 | bool EnvironmentMapHelper( |
| 455 | std::map<std::string, cm::optional<std::string>>& out, |
nothing calls this directly
no test coverage detected
searching dependent graphs…