| 46 | template <typename T, detail::enable_if_t< |
| 47 | !detail::is_same<T, JsonVariant>::value, int> = 0> |
| 48 | T add() const { |
| 49 | return add<JsonVariant>().to<T>(); |
| 50 | } |
| 51 | |
| 52 | // Appends a new (null) element to the array. |
| 53 | // Returns a reference to the new element. |
no test coverage detected