@@ -202,13 +202,13 @@ public:
202
202
r = n;
203
203
}
204
204
resize(r);
205
- Tr::copy(vector<Ch, A>::data , str.vector<Ch, A>::data + pos, r);
205
+ Tr::copy(vector<Ch, A>::data_ , str.vector<Ch, A>::data_ + pos, r);
206
206
return *this;
207
207
}
208
208
209
209
_UCXXEXPORT basic_string& assign(const Ch* s, size_type n){
210
210
resize(n);
211
- Tr::copy(vector<Ch, A>::data , s, n);
211
+ Tr::copy(vector<Ch, A>::data_ , s, n);
212
212
return *this;
213
213
}
214
214
@@ -246,8 +246,8 @@ public:
246
246
}
247
247
size_type temp = vector<Ch, A>::elements;
248
248
resize(vector<Ch, A>::elements + r);
249
- Tr::move(vector<Ch, A>::data + pos1 + r, vector<Ch, A>::data + pos1, temp - pos1);
250
- Tr::copy(vector<Ch, A>::data + pos1, str.vector<Ch, A>::data + pos2, r);
249
+ Tr::move(vector<Ch, A>::data_ + pos1 + r, vector<Ch, A>::data_ + pos1, temp - pos1);
250
+ Tr::copy(vector<Ch, A>::data_ + pos1, str.vector<Ch, A>::data_ + pos2, r);
251
251
return *this;
252
252
}
253
253
@@ -279,8 +279,8 @@ public:
279
279
}
280
280
size_type temp = vector<Ch, A>::elements;
281
281
resize(vector<Ch, A>::elements + n);
282
- Tr::move(vector<Ch, A>::data + pos + n, vector<Ch, A>::data + pos, temp - pos);
283
- Tr::assign(vector<Ch, A>::data + pos, n, c);
282
+ Tr::move(vector<Ch, A>::data_ + pos + n, vector<Ch, A>::data_ + pos, temp - pos);
283
+ Tr::assign(vector<Ch, A>::data_ + pos, n, c);
284
284
return *this;
285
285
}
286
286
@@ -296,7 +296,7 @@ public:
296
296
}
297
297
size_type temp = vector<Ch, A>::elements;
298
298
299
- Tr::move(vector<Ch, A>::data + pos, vector<Ch, A>::data + pos + xlen, temp - pos - xlen);
299
+ Tr::move(vector<Ch, A>::data_ + pos, vector<Ch, A>::data_ + pos + xlen, temp - pos - xlen);
300
300
resize(temp - xlen);
301
301
return *this;
302
302
}
@@ -361,8 +361,8 @@ public:
361
361
//Initial block is of size pos1
362
362
//Block 2 is of size len
363
363
364
- Tr::move(vector<Ch, A>::data + pos1 + rlen, vector<Ch, A>::data + pos1 + xlen, temp - pos1 - xlen);
365
- Tr::copy(vector<Ch, A>::data + pos1, str.vector<Ch, A>::data + pos2, rlen);
364
+ Tr::move(vector<Ch, A>::data_ + pos1 + rlen, vector<Ch, A>::data_ + pos1 + xlen, temp - pos1 - xlen);
365
+ Tr::copy(vector<Ch, A>::data_ + pos1, str.vector<Ch, A>::data_ + pos2, rlen);
366
366
resize(temp - xlen + rlen);
367
367
return *this;
368
368
}
@@ -394,7 +394,7 @@ public:
394
394
if(r > n){
395
395
r = n;
396
396
}
397
- Tr::copy(s, vector<Ch, A>::data + pos, r);
397
+ Tr::copy(s, vector<Ch, A>::data_ + pos, r);
398
398
return r;
399
399
}
400
400
@@ -605,7 +605,7 @@ public:
605
605
if(rlen > len2){
606
606
rlen = len2;
607
607
}
608
- int retval = Tr::compare(vector<Ch, A>::data + pos1, str.vector<Ch, A>::data + pos2, rlen);
608
+ int retval = Tr::compare(vector<Ch, A>::data_ + pos1, str.vector<Ch, A>::data_ + pos2, rlen);
609
609
if(retval == 0){
610
610
if(len1 < len2){
611
611
retval = -1;
@@ -649,7 +649,7 @@ public:
649
649
if(rlen > len2){
650
650
rlen = len2;
651
651
}
652
- int retval = Tr::compare(vector<Ch, A>::data + pos1, s, rlen);
652
+ int retval = Tr::compare(vector<Ch, A>::data_ + pos1, s, rlen);
653
653
if(retval == 0){
654
654
if(len1 < len2){
655
655
retval = -1;
0 commit comments