| 149 | } |
| 150 | |
| 151 | void |
| 152 | ParseJsonArray(rapidjson::Value const& jsonArray, AnyVector& anyVector, bool ci) |
| 153 | { |
| 154 | for (auto const& jsonValue : jsonArray.GetArray()) |
| 155 | { |
| 156 | Any anyValue = ParseJsonValue(jsonValue, ci); |
| 157 | if (!anyValue.Empty()) |
| 158 | { |
| 159 | anyVector.emplace_back(std::move(anyValue)); |
| 160 | } |
| 161 | } |
| 162 | } |
| 163 | |
| 164 | } // namespace |
| 165 |
no test coverage detected