| 520 | } |
| 521 | |
| 522 | void setLinkedString(const char* s) { |
| 523 | ARDUINOJSON_ASSERT(type_ == VariantType::Null); // must call clear() first |
| 524 | ARDUINOJSON_ASSERT(s); |
| 525 | type_ = VariantType::LinkedString; |
| 526 | content_.asLinkedString = s; |
| 527 | } |
| 528 | |
| 529 | template <typename TAdaptedString> |
| 530 | void setTinyString(const TAdaptedString& s) { |
nothing calls this directly
no outgoing calls
no test coverage detected