| 27 | #endif |
| 28 | |
| 29 | RamString(const char* str, size_t sz, bool isStatic = false) |
| 30 | : str_(str), size_(sz & sizeMask), static_(isStatic) { |
| 31 | ARDUINOJSON_ASSERT(size_ == sz); |
| 32 | } |
| 33 | |
| 34 | bool isNull() const { |
| 35 | return !str_; |
nothing calls this directly
no outgoing calls
no test coverage detected