From 43f5a35593ebc9f6bcea619bb170394ea7ae468e Mon Sep 17 00:00:00 2001 From: mvel Date: Thu, 10 Feb 2022 16:45:41 +0300 Subject: Restoring authorship annotation for . Commit 2 of 2. --- library/cpp/string_utils/scan/scan.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'library/cpp/string_utils') diff --git a/library/cpp/string_utils/scan/scan.h b/library/cpp/string_utils/scan/scan.h index fcadeee89ca..703db543216 100644 --- a/library/cpp/string_utils/scan/scan.h +++ b/library/cpp/string_utils/scan/scan.h @@ -2,18 +2,18 @@ #include -template +template static inline void ScanKeyValue(TStringBuf s, F&& f) { TStringBuf key, val; while (!s.empty()) { - val = s.NextTok(sep); + val = s.NextTok(sep); if (val.empty()) { continue; // && case } - key = val.NextTok(sepKeyVal); + key = val.NextTok(sepKeyVal); if (addAll || val.IsInited()) { f(key, val); // includes empty keys -- cgit v1.3