| 75 | } |
| 76 | |
| 77 | void ParseJsonArray(const json& jsonArray, AnyVector& anyVector) |
| 78 | { |
| 79 | for (const auto& jsonValue : jsonArray) |
| 80 | { |
| 81 | Any anyValue = ParseJsonValue(jsonValue); |
| 82 | if (!anyValue.Empty()) |
| 83 | { |
| 84 | anyVector.push_back(anyValue); |
| 85 | } |
| 86 | } |
| 87 | } |
| 88 | |
| 89 | } |
| 90 |
no test coverage detected