File tree 2 files changed +9
-6
lines changed
2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 1
1
SAMD CORE
2
2
3
- * Fixed Serial.flush() blocking before any writes. Thanks @hangmoh
4
- * Added snprintf_P to avr/pgmspace.h stub. Thanks @jantje
3
+ * Fixed Serial.flush() blocking before any writes. Thanks @hangmoh
4
+ * Added snprintf_P to avr/pgmspace.h stub. Thanks @jantje
5
+ * Another small fix to String iterators. Thanks @Ivan-Perez @Chris--A
5
6
6
7
SAMD CORE 1.6.6 2016.05.19
7
8
Original file line number Diff line number Diff line change @@ -159,10 +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
- const char * begin () { return c_str (); }
165
- const char * end () { 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 (); }
166
168
167
169
// search
168
170
int indexOf ( char ch ) const ;
You can’t perform that action at this time.
0 commit comments