Made code more sensible
This commit is contained in:
parent
b19378771b
commit
b502cd28f3
5
utf8.h
5
utf8.h
@ -49,9 +49,6 @@ struct string32 {
|
|||||||
while (sd[0])
|
while (sd[0])
|
||||||
cs.push_back(char32(&sd));
|
cs.push_back(char32(&sd));
|
||||||
}
|
}
|
||||||
string32(std::vector<char32> c32s) {
|
|
||||||
cs = c32s;
|
|
||||||
}
|
|
||||||
int size() const {
|
int size() const {
|
||||||
return cs.size();
|
return cs.size();
|
||||||
}
|
}
|
||||||
@ -59,7 +56,7 @@ struct string32 {
|
|||||||
return cs[i];
|
return cs[i];
|
||||||
}
|
}
|
||||||
string32 replace(string32 find, string32 with) {
|
string32 replace(string32 find, string32 with) {
|
||||||
string32 copyOfSelf (cs);
|
string32 copyOfSelf = *this;
|
||||||
int havematched(0);
|
int havematched(0);
|
||||||
int findsize = find.cs.size();
|
int findsize = find.cs.size();
|
||||||
for (int index(0); index < copyOfSelf.cs.size(); index++) {
|
for (int index(0); index < copyOfSelf.cs.size(); index++) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user