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 | |
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')
-rw-r--r-- | library/cpp/regex/pcre/regexp.cpp | 10 | ||||
-rw-r--r-- | library/cpp/regex/pire/pcre2pire.cpp | 6 | ||||
-rw-r--r-- | library/cpp/regex/pire/regexp.h | 6 |
3 files changed, 11 insertions, 11 deletions
diff --git a/library/cpp/regex/pcre/regexp.cpp b/library/cpp/regex/pcre/regexp.cpp index 575c09cee4..487a9100b9 100644 --- a/library/cpp/regex/pcre/regexp.cpp +++ b/library/cpp/regex/pcre/regexp.cpp @@ -5,9 +5,9 @@ #include <util/system/defaults.h> #include <cstdlib> -#include <util/generic/noncopyable.h> +#include <util/generic/noncopyable.h> -class TGlobalImpl : TNonCopyable { +class TGlobalImpl : TNonCopyable { private: const char* Str; regmatch_t* Pmatch; @@ -149,13 +149,13 @@ public: : CompileOptions(cflags) , RegExpr(re) { - int rc = regcomp(&Preg, re.data(), cflags); + int rc = regcomp(&Preg, re.data(), cflags); if (rc) { const size_t ERRBUF_SIZE = 100; char errbuf[ERRBUF_SIZE]; regerror(rc, &Preg, errbuf, ERRBUF_SIZE); Error = "Error: regular expression " + re + " is wrong: " + errbuf; - ythrow yexception() << "RegExp " << re << ": " << Error.data(); + ythrow yexception() << "RegExp " << re << ": " << Error.data(); } } @@ -297,7 +297,7 @@ int TRegExSubst::ParseReplacement(const char* repl) { while (IsAsciiDigit(*pos2)) pos2++; if (pos2 > pos1 + 1) { - Brfs[i].Refer = atol(TString(Replacement, pos1 + 1 - Replacement, pos2 - (pos1 + 1)).data()); + Brfs[i].Refer = atol(TString(Replacement, pos1 + 1 - Replacement, pos2 - (pos1 + 1)).data()); } else { pos1++; if (*pos2 == '$') 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(); } |