| 26 | namespace { |
| 27 | |
| 28 | bool JsonIsStringArray(Json::Value const& v) |
| 29 | { |
| 30 | return v.isArray() && |
| 31 | std::all_of(v.begin(), v.end(), |
| 32 | [](Json::Value const& it) { return it.isString(); }); |
| 33 | } |
| 34 | |
| 35 | bool ParsePreprocessorDefine(Json::Value& dval, |
| 36 | cmCxxModuleMetadata::PreprocessorDefineData& out, |
no test coverage detected
searching dependent graphs…