| 129 | |
| 130 | template <typename T> |
| 131 | T FromJSON(json_t const * root) |
| 132 | { |
| 133 | T result{}; |
| 134 | FromJSON(root, result); |
| 135 | return result; |
| 136 | } |
| 137 | |
| 138 | inline void FromJSON(json_t * root, json_t *& value) |
| 139 | { |
no outgoing calls
no test coverage detected