db/upnp: emplace/move in csvToStrings()
This commit is contained in:
parent
1feedd4d9c
commit
0c4a791111
@ -145,7 +145,7 @@ csvToStrings(const char *s, T &tokens)
|
|||||||
while (true) {
|
while (true) {
|
||||||
char ch = *s++;
|
char ch = *s++;
|
||||||
if (ch == 0) {
|
if (ch == 0) {
|
||||||
tokens.push_back(current);
|
tokens.emplace_back(std::move(current));
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -154,7 +154,7 @@ csvToStrings(const char *s, T &tokens)
|
|||||||
if (ch == 0)
|
if (ch == 0)
|
||||||
return false;
|
return false;
|
||||||
} else if (ch == ',') {
|
} else if (ch == ',') {
|
||||||
tokens.push_back(current);
|
tokens.emplace_back(std::move(current));
|
||||||
current.clear();
|
current.clear();
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user