File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
hardware/arduino/cores/arduino Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -61,11 +61,6 @@ class String
61
61
unsigned char reserve (unsigned int size);
62
62
inline unsigned int length (void ) const {return len;}
63
63
64
- // copy and move
65
- String & copy (const char *cstr, unsigned int length);
66
- #ifdef __GXX_EXPERIMENTAL_CXX0X__
67
- void move (String &rhs);
68
- #endif
69
64
String & operator = (const String &rhs);
70
65
String & operator = (const char *cstr);
71
66
#ifdef __GXX_EXPERIMENTAL_CXX0X__
@@ -160,6 +155,12 @@ class String
160
155
void init (void );
161
156
unsigned char changeBuffer (unsigned int maxStrLen);
162
157
unsigned char concat (const char *cstr, unsigned int length);
158
+
159
+ // copy and move
160
+ String & copy (const char *cstr, unsigned int length);
161
+ #ifdef __GXX_EXPERIMENTAL_CXX0X__
162
+ void move (String &rhs);
163
+ #endif
163
164
};
164
165
165
166
class StringSumHelper : public String
You can’t perform that action at this time.
0 commit comments