aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/string_utils
diff options
context:
space:
mode:
authorabokov <abokov@yandex-team.ru>2022-02-10 16:49:57 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:49:57 +0300
commitdb144972bc686626e62c9bb5b84d932f987dc8ef (patch)
treee0ed404f8a8785b89e2f0edb6d22cc8ad474ece0 /library/cpp/string_utils
parentefc32853c4263131bc59412eaf1a9e4aaae2a1f9 (diff)
downloadydb-db144972bc686626e62c9bb5b84d932f987dc8ef.tar.gz
Restoring authorship annotation for <abokov@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/string_utils')
-rw-r--r--library/cpp/string_utils/quote/quote.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/string_utils/quote/quote.cpp b/library/cpp/string_utils/quote/quote.cpp
index e523350b80..c4c0212ed6 100644
--- a/library/cpp/string_utils/quote/quote.cpp
+++ b/library/cpp/string_utils/quote/quote.cpp
@@ -221,7 +221,7 @@ char* CGIUnescape(char* to, const char* from) {
char* CGIUnescape(char* to, const char* from, size_t len) {
return Unescape(to, from, from + len, TFromHexLenLimited(from + len));
}
-
+
void CGIUnescape(TString& url) {
if (url.empty()) {
return;