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.
begin
end
1 parent 31c9183 commit b8efe8fCopy full SHA for b8efe8f
hardware/arduino/avr/cores/arduino/WString.h
@@ -160,9 +160,9 @@ class String
160
void getBytes(unsigned char *buf, unsigned int bufsize, unsigned int index=0) const;
161
void toCharArray(char *buf, unsigned int bufsize, unsigned int index=0) const
162
{getBytes((unsigned char *)buf, bufsize, index);}
163
- const char * c_str() const { return buffer; }
164
- const char* begin() { return c_str(); }
165
- const char* end() { return c_str() + length(); }
+ const char* c_str() const { return buffer; }
+ const char* begin() const { return c_str(); }
+ const char* end() const { return c_str() + length(); }
166
167
// search
168
int indexOf( char ch ) const;
0 commit comments