diff options
author | qkrorlqr <qkrorlqr@yandex-team.ru> | 2022-02-10 16:47:20 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:47:20 +0300 |
commit | 9b89266638b10d40309e31dcb7caa2fc52b2aefd (patch) | |
tree | aaf0d6ece270940a4f208e4202e4a37a15ce05b7 /library/cpp/regex/pcre/regexp.cpp | |
parent | 47af3b5bf148ddab250833ec454d30d7c4930c31 (diff) | |
download | ydb-9b89266638b10d40309e31dcb7caa2fc52b2aefd.tar.gz |
Restoring authorship annotation for <qkrorlqr@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/regex/pcre/regexp.cpp')
-rw-r--r-- | library/cpp/regex/pcre/regexp.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/cpp/regex/pcre/regexp.cpp b/library/cpp/regex/pcre/regexp.cpp index 575c09cee4..c0474e9f39 100644 --- a/library/cpp/regex/pcre/regexp.cpp +++ b/library/cpp/regex/pcre/regexp.cpp @@ -2,7 +2,7 @@ #include <util/generic/string.h> #include <util/string/ascii.h> -#include <util/system/defaults.h> +#include <util/system/defaults.h> #include <cstdlib> #include <util/generic/noncopyable.h> @@ -218,7 +218,7 @@ int TRegExBase::Exec(const char* str, regmatch_t pmatch[], int eflags, int nmatc return Impl->Exec(str, pmatch, eflags, nmatches); } -int TRegExBase::GetCompileOptions() const { +int TRegExBase::GetCompileOptions() const { if (!Impl) ythrow yexception() << "!Regular expression is not compiled"; return Impl->CompileOptions; |