mirror of
https://github.com/mapbox/tippecanoe.git
synced 2025-04-05 10:09:08 +00:00
Avoid needlessly constructing a temporary string
This commit is contained in:
parent
444de1f086
commit
f75d9e0dd4
@ -102,7 +102,7 @@ static void quote(std::string *buf, const char *s) {
|
||||
}
|
||||
|
||||
*out = '\0';
|
||||
buf->append(std::string(tmp));
|
||||
buf->append(tmp, strlen(tmp));
|
||||
}
|
||||
|
||||
static void aprintf(std::string *buf, const char *format, ...) {
|
||||
@ -116,7 +116,7 @@ static void aprintf(std::string *buf, const char *format, ...) {
|
||||
}
|
||||
va_end(ap);
|
||||
|
||||
buf->append(std::string(tmp));
|
||||
buf->append(tmp, strlen(tmp));
|
||||
free(tmp);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user