File tree Expand file tree Collapse file tree 4 files changed +1
-5
lines changed Expand file tree Collapse file tree 4 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -134,7 +134,6 @@ inline void String::init(void)
134
134
buffer = NULL ;
135
135
capacity = 0 ;
136
136
len = 0 ;
137
- flags = 0 ;
138
137
}
139
138
140
139
void String::invalidate (void )
Original file line number Diff line number Diff line change @@ -191,7 +191,6 @@ class String
191
191
char *buffer; // the actual char array
192
192
unsigned int capacity; // the array length minus one (for the '\0')
193
193
unsigned int len; // the String length (not counting the '\0')
194
- unsigned char flags; // unused, for future features
195
194
protected:
196
195
void init (void );
197
196
void invalidate (void );
Original file line number Diff line number Diff line change @@ -134,7 +134,6 @@ inline void String::init(void)
134
134
buffer = NULL ;
135
135
capacity = 0 ;
136
136
len = 0 ;
137
- flags = 0 ;
138
137
}
139
138
140
139
void String::invalidate (void )
Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ class String
113
113
String & operator += (const String &rhs) {concat (rhs); return (*this );}
114
114
String & operator += (const char *cstr) {concat (cstr); return (*this );}
115
115
String & operator += (char c) {concat (c); return (*this );}
116
- String & operator += (unsigned char num) {concat (num); return (*this );}
116
+ String & operator += (unsigned char num) {concat (num); return (*this );}
117
117
String & operator += (int num) {concat (num); return (*this );}
118
118
String & operator += (unsigned int num) {concat (num); return (*this );}
119
119
String & operator += (long num) {concat (num); return (*this );}
@@ -191,7 +191,6 @@ class String
191
191
char *buffer; // the actual char array
192
192
unsigned int capacity; // the array length minus one (for the '\0')
193
193
unsigned int len; // the String length (not counting the '\0')
194
- unsigned char flags; // unused, for future features
195
194
protected:
196
195
void init (void );
197
196
void invalidate (void );
You can’t perform that action at this time.
0 commit comments