Skip to content

Commit

Permalink
Remove redundant move
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterJohnson committed Jan 1, 2025
1 parent 2885035 commit 4d0e287
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wpinet/src/main/native/cpp/HttpUtil.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ wpi::expected<std::string, size_t> UnescapeURI(std::string_view str) {
}
out.push_back((val1 << 4) | val2);
}
return std::move(out);
return out;
}

std::string EscapeURI(std::string_view str, bool spacePlus) {
Expand Down

0 comments on commit 4d0e287

Please sign in to comment.