| 18 | class Slot { |
| 19 | public: |
| 20 | Slot() : ptr_(nullptr), id_(NULL_SLOT) {} |
| 21 | Slot(T* p, SlotId id) : ptr_(p), id_(id) { |
| 22 | ARDUINOJSON_ASSERT((p == nullptr) == (id == NULL_SLOT)); |
| 23 | } |
nothing calls this directly
no outgoing calls
no test coverage detected