We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fdb320 commit 114a55eCopy full SHA for 114a55e
hardware/arduino/avr/cores/arduino/WString.cpp
@@ -134,7 +134,6 @@ inline void String::init(void)
134
buffer = NULL;
135
capacity = 0;
136
len = 0;
137
- flags = 0;
138
}
139
140
void String::invalidate(void)
hardware/arduino/avr/cores/arduino/WString.h
@@ -191,7 +191,6 @@ class String
191
char *buffer; // the actual char array
192
unsigned int capacity; // the array length minus one (for the '\0')
193
unsigned int len; // the String length (not counting the '\0')
194
- unsigned char flags; // unused, for future features
195
protected:
196
void init(void);
197
void invalidate(void);
0 commit comments