aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/string_utils/quote
diff options
context:
space:
mode:
Diffstat (limited to 'library/cpp/string_utils/quote')
-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 e523350b80..c0a4b64c61 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;