diff options
author | danlark <danlark@yandex-team.ru> | 2022-02-10 16:46:08 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:08 +0300 |
commit | 3426a9bc7f169ae9da54cef557ad2a33f6e8eee0 (patch) | |
tree | 26154e1e9990f1bb4525d3e3fb5b6dac2c2c1da2 /library/cpp/regex/pire | |
parent | cb68f224c46a8ee52ac3fdd2a32534b8bb8dc134 (diff) | |
download | ydb-3426a9bc7f169ae9da54cef557ad2a33f6e8eee0.tar.gz |
Restoring authorship annotation for <danlark@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/regex/pire')
-rw-r--r-- | library/cpp/regex/pire/pcre2pire.cpp | 6 | ||||
-rw-r--r-- | library/cpp/regex/pire/regexp.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/library/cpp/regex/pire/pcre2pire.cpp b/library/cpp/regex/pire/pcre2pire.cpp index f788beb85f..fbc0460ad4 100644 --- a/library/cpp/regex/pire/pcre2pire.cpp +++ b/library/cpp/regex/pire/pcre2pire.cpp @@ -4,7 +4,7 @@ TString Pcre2Pire(const TString& src) { TVector<char> result; - result.reserve(src.size() + 1); + result.reserve(src.size() + 1); enum EState { S_SIMPLE, @@ -19,7 +19,7 @@ TString Pcre2Pire(const TString& src) { EState state = S_SIMPLE; - for (ui32 i = 0; i < src.size(); ++i) { + for (ui32 i = 0; i < src.size(); ++i) { const char c = src[i]; switch (state) { @@ -32,7 +32,7 @@ TString Pcre2Pire(const TString& src) { state = S_EXPECT_Q; result.push_back(c); } else { - if (c == ')' && result.size() > 0 && result.back() == '(') { + if (c == ')' && result.size() > 0 && result.back() == '(') { // eliminating "()" result.pop_back(); } else { diff --git a/library/cpp/regex/pire/regexp.h b/library/cpp/regex/pire/regexp.h index 94bba4064b..9fceacc028 100644 --- a/library/cpp/regex/pire/regexp.h +++ b/library/cpp/regex/pire/regexp.h @@ -278,8 +278,8 @@ namespace NRegExp { } inline TStringBuf GetCaptured() const noexcept { - return TStringBuf(Data.data() + GetState().Begin() - 1, - Data.data() + GetState().End() - 1); + return TStringBuf(Data.data() + GetState().Begin() - 1, + Data.data() + GetState().End() - 1); } private: @@ -302,7 +302,7 @@ namespace NRegExp { inline TSlowSearcher& Search(const char* data, size_t len, bool addBegin = false, bool addEnd = false) noexcept { TStringBuf textData(data, len); Data = textData; - Run(Data.begin(), Data.size(), addBegin, addEnd); + Run(Data.begin(), Data.size(), addBegin, addEnd); return GetAns(); } |