| 209 | template <typename TChar> |
| 210 | ARDUINOJSON_DEPRECATED("use obj[key].to<JsonObject>() instead") |
| 211 | JsonObject createNestedObject(TChar* key) { |
| 212 | return operator[](key).template to<JsonObject>(); |
| 213 | } |
| 214 | |
| 215 | // DEPRECATED: use obj[key].to<JsonObject>() instead |
| 216 | template <typename TString> |
nothing calls this directly
no outgoing calls
no test coverage detected