diff options
author | uht <uht@yandex-team.ru> | 2022-02-10 16:49:56 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:56 +0300 |
commit | 570af552997dea3da2712f693b345afa31932f3b (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/string_utils | |
parent | 1191d1e479d83a18a813a5107573ce22a2f0bbb4 (diff) | |
download | ydb-570af552997dea3da2712f693b345afa31932f3b.tar.gz |
Restoring authorship annotation for <uht@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/string_utils')
-rw-r--r-- | library/cpp/string_utils/quote/quote.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/cpp/string_utils/quote/quote.cpp b/library/cpp/string_utils/quote/quote.cpp index c0a4b64c61..e523350b80 100644 --- a/library/cpp/string_utils/quote/quote.cpp +++ b/library/cpp/string_utils/quote/quote.cpp @@ -29,7 +29,7 @@ namespace { if (!IsAsciiHex((ui8)x[0]) || !IsAsciiHex((ui8)x[1])) return '%'; ui8 c = 0; - + GETXC; GETXC; return c; @@ -160,7 +160,7 @@ void CGIEscape(TString& url) { char* to = tempBuf.Data(); url.AssignNoAlias(to, CGIEscape(to, url.data(), url.size())); -} +} TString CGIEscapeRet(const TStringBuf url) { TString to; @@ -233,7 +233,7 @@ void CGIUnescape(TString& url) { } else { url = CGIUnescapeRet(url); } -} +} TString CGIUnescapeRet(const TStringBuf from) { TString to; |