File tree 2 files changed +7
-6
lines changed
hardware/arduino/sam/cores/arduino
2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ ARDUINO 1.6.10
7
7
boards based on Leonardo
8
8
* sam: added snprintf_P to avr/pgmspace.h stub. Thanks @jantje
9
9
* avr: Fix TX buffer being overwritten by multiple Wire.write(...) calls in slave mode. Thanks @kellerkindt
10
+ * Another small fix to String iterators. Thanks @Ivan-Perez @Chris--A
10
11
11
12
[libraries]
12
13
Original file line number Diff line number Diff line change @@ -159,12 +159,12 @@ class String
159
159
char & operator [] (unsigned int index);
160
160
void getBytes (unsigned char *buf, unsigned int bufsize, unsigned int index=0 ) const ;
161
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
- char * begin () { return buffer; }
165
- char * end () { return buffer + length (); }
166
- const char * begin () const { return c_str (); }
167
- const char * end () const { return c_str () + length (); }
162
+ { getBytes ((unsigned char *)buf, bufsize, index ); }
163
+ const char * c_str () const { return buffer; }
164
+ char * begin () { return buffer; }
165
+ char * end () { return buffer + length (); }
166
+ const char * begin () const { return c_str (); }
167
+ const char * end () const { return c_str () + length (); }
168
168
169
169
// search
170
170
int indexOf ( char ch ) const ;
You can’t perform that action at this time.
0 commit comments