diff options
author | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-06-01 11:36:32 +0300 |
---|---|---|
committer | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-06-01 11:36:32 +0300 |
commit | 45799c2715cdd8b97f99eba8864d365389056b3d (patch) | |
tree | 110d7ea0fffd22962da3b0ecc93108c263c2e930 /contrib | |
parent | 613651f1b6810fbee85dc4ddb7b3cc5a0a0d665e (diff) | |
download | ydb-45799c2715cdd8b97f99eba8864d365389056b3d.tar.gz |
intermediate changes
ref:56767aba9e551eae48e94d9db7f17176562e2f45
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/restricted/boost/boost/regex/v4/regex_iterator.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/contrib/restricted/boost/boost/regex/v4/regex_iterator.hpp b/contrib/restricted/boost/boost/regex/v4/regex_iterator.hpp index 52c1681b4c..4b2e849731 100644 --- a/contrib/restricted/boost/boost/regex/v4/regex_iterator.hpp +++ b/contrib/restricted/boost/boost/regex/v4/regex_iterator.hpp @@ -50,6 +50,8 @@ class regex_iterator_implementation public: regex_iterator_implementation(const regex_type* p, BidirectionalIterator last, match_flag_type f) : base(), end(last), re(*p), flags(f){} + regex_iterator_implementation(const regex_iterator_implementation& other) + :what(other.what), base(other.base), end(other.end), re(other.re), flags(other.flags){} bool init(BidirectionalIterator first) { base = first; |