1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 11:37:44 +00:00

LibWeb: Make the URL encoding function a little less copy-happy

This commit is contained in:
Andreas Kling 2020-05-05 12:37:11 +02:00
parent d1a9afa7cd
commit d677d23da1
2 changed files with 4 additions and 4 deletions

View file

@ -36,8 +36,8 @@ struct URLQueryParam {
String value;
};
String url_encode(StringView);
String url_encode(Vector<URLQueryParam>);
String url_encode(const StringView&);
String url_encode(const Vector<URLQueryParam>&);
}