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
commit3edcc3fb0098c02c36c44dfcc0d0dfe4224639c9 (patch)
treeb09bb5af02283c9ae5f6b7459a44fc085b29de72 /library/cpp/regex/pcre/regexp.h
parent7fa2bc85438d6a40801444b0def15f9e76a44034 (diff)
downloadydb-3edcc3fb0098c02c36c44dfcc0d0dfe4224639c9.tar.gz
Restoring authorship annotation for <geek@yandex-team.ru>. Commit 1 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 bc610bd2f3..d39ce80fa0 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;
};