From 55a7f90e4cd31e9481cace8ee5dfd682c27e810e Mon Sep 17 00:00:00 2001
From: tobo <tobo@yandex-team.ru>
Date: Thu, 10 Feb 2022 16:47:27 +0300
Subject: Restoring authorship annotation for <tobo@yandex-team.ru>. Commit 2
 of 2.

---
 library/cpp/string_utils/quote/quote.cpp | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

(limited to 'library/cpp/string_utils/quote/quote.cpp')

diff --git a/library/cpp/string_utils/quote/quote.cpp b/library/cpp/string_utils/quote/quote.cpp
index 26693c44b3..e523350b80 100644
--- a/library/cpp/string_utils/quote/quote.cpp
+++ b/library/cpp/string_utils/quote/quote.cpp
@@ -114,7 +114,7 @@ static inline It1 Escape(It1 to, It2 from, It3 end, const bool* escape_map = cha
             *to++ = (*from == ' ' ? '+' : *from);
         }
 
-        ++from; 
+        ++from;
     }
 
     *to = 0;
@@ -129,12 +129,12 @@ static inline It1 Unescape(It1 to, It2 from, It3 end, FromHex fromHex) {
     while (from != end) {
         switch (*from) {
             case '%':
-                ++from; 
+                ++from;
                 *to++ = fromHex.x2c(from);
                 break;
             case '+':
                 *to++ = ' ';
-                ++from; 
+                ++from;
                 break;
             default:
                 *to++ = *from++;
@@ -289,7 +289,7 @@ char* UrlEscape(char* to, const char* from, bool forceEscape) {
             *to++ = d2x((unsigned char)*from & 0xF);
         } else
             *to++ = *from;
-        ++from; 
+        ++from;
     }
 
     *to = 0;
-- 
cgit v1.2.3