aboutsummaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorarcadia-devtools <arcadia-devtools@yandex-team.ru>2022-06-01 11:36:32 +0300
committerarcadia-devtools <arcadia-devtools@yandex-team.ru>2022-06-01 11:36:32 +0300
commit45799c2715cdd8b97f99eba8864d365389056b3d (patch)
tree110d7ea0fffd22962da3b0ecc93108c263c2e930 /contrib
parent613651f1b6810fbee85dc4ddb7b3cc5a0a0d665e (diff)
downloadydb-45799c2715cdd8b97f99eba8864d365389056b3d.tar.gz
intermediate changes
ref:56767aba9e551eae48e94d9db7f17176562e2f45
Diffstat (limited to 'contrib')
-rw-r--r--contrib/restricted/boost/boost/regex/v4/regex_iterator.hpp2
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;