| 100 | |
| 101 | template <class First> |
| 102 | inline json_t const * GetJSONObligatoryFieldByPath(json_t const * root, First && path) |
| 103 | { |
| 104 | return GetJSONObligatoryField(root, std::forward<First>(path)); |
| 105 | } |
| 106 | |
| 107 | template <class First, class... Paths> |
| 108 | inline json_t const * GetJSONObligatoryFieldByPath(json_t const * root, First && path, Paths &&... paths) |
nothing calls this directly
no test coverage detected