We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 145b736 commit c2488bcCopy full SHA for c2488bc
hardware/esp8266com/esp8266/libraries/ESP8266WiFi/src/include/slist.h
@@ -9,14 +9,12 @@ class SList {
9
protected:
10
11
static void _add(T* self) {
12
- DEBUGV("%s %08x %08x\n", __func__, (uint32_t) self, (uint32_t) _s_first);
13
T* tmp = _s_first;
14
_s_first = self;
15
self->_next = tmp;
16
}
17
18
static void _remove(T* self) {
19
20
if (_s_first == self) {
21
_s_first = self->_next;
22
self->_next = 0;
0 commit comments