| 26 | using JSONPtr = std::unique_ptr<json_t, JSONDecRef>; |
| 27 | |
| 28 | inline JSONPtr NewJSONObject() |
| 29 | { |
| 30 | return JSONPtr(json_object()); |
| 31 | } |
| 32 | inline JSONPtr NewJSONArray() |
| 33 | { |
| 34 | return JSONPtr(json_array()); |
no outgoing calls
no test coverage detected