aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/regex/pcre/regexp.h
diff options
context:
space:
mode:
authorgeek <geek@yandex-team.ru>2022-02-10 16:49:34 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:49:34 +0300
commit62bad8df5b890e3012b8949bcf6d2e885ce8972c (patch)
tree5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/regex/pcre/regexp.h
parent3edcc3fb0098c02c36c44dfcc0d0dfe4224639c9 (diff)
downloadydb-62bad8df5b890e3012b8949bcf6d2e885ce8972c.tar.gz
Restoring authorship annotation for <geek@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/regex/pcre/regexp.h')
-rw-r--r--library/cpp/regex/pcre/regexp.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/library/cpp/regex/pcre/regexp.h b/library/cpp/regex/pcre/regexp.h
index d39ce80fa0..bc610bd2f3 100644
--- a/library/cpp/regex/pcre/regexp.h
+++ b/library/cpp/regex/pcre/regexp.h
@@ -14,8 +14,8 @@
#define NMATCHES 100
#define REGEXP_GLOBAL 0x0080 // use this if you want to find all occurences
-class TRegExBaseImpl;
-
+class TRegExBaseImpl;
+
class TRegExBase {
protected:
TSimpleIntrusivePtr<TRegExBaseImpl> Impl;
@@ -24,11 +24,11 @@ public:
TRegExBase(const char* regExpr = nullptr, int cflags = REG_EXTENDED);
TRegExBase(const TString& regExpr, int cflags = REG_EXTENDED);
- virtual ~TRegExBase();
+ virtual ~TRegExBase();
int Exec(const char* str, regmatch_t pmatch[], int eflags, int nmatches = NMATCHES) const;
void Compile(const TString& regExpr, int cflags = REG_EXTENDED);
- bool IsCompiled() const;
+ bool IsCompiled() const;
int GetCompileOptions() const;
TString GetRegExpr() const;
};