aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/string_utils
diff options
context:
space:
mode:
authoruht <uht@yandex-team.ru>2022-02-10 16:49:56 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:49:56 +0300
commit570af552997dea3da2712f693b345afa31932f3b (patch)
tree5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/string_utils
parent1191d1e479d83a18a813a5107573ce22a2f0bbb4 (diff)
downloadydb-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.cpp6
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;