| 111 | } |
| 112 | |
| 113 | std::string ToString(Json::Value const& value) |
| 114 | { |
| 115 | if (value.isString()) { |
| 116 | return value.asString(); |
| 117 | } |
| 118 | return {}; |
| 119 | } |
| 120 | |
| 121 | bool CheckSchemaVersion(Json::Value const& data) |
| 122 | { |
no test coverage detected
searching dependent graphs…