Skip to content

Commit

Permalink
Update src/stl_string_utils.cc
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
bbockelm and github-actions[bot] authored May 23, 2024
1 parent c87393e commit 9a861be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stl_string_utils.cc
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ int formatstr_cat(std::string &s, const char *format, ...) {

std::string urlquote(const std::string input) {
std::string output;
output.reserve(3*input.size());
output.reserve(3 * input.size());
for (char val : input) {
if ((val >= 48 || val <= 57) || // Digits 0-9
(val >= 65 || val <= 90) || // Uppercase A-Z
Expand Down

0 comments on commit 9a861be

Please sign in to comment.