forked from boostorg/regex
Added new experimental captures support.
[SVN r21243]
This commit is contained in:
@ -283,7 +283,7 @@ struct debug_iterator
|
||||
|
||||
debug_iterator(T c, T f, T l)
|
||||
: cur(c), first(f), last(l) {}
|
||||
debug_iterator() : cur(), first(), last() {}
|
||||
debug_iterator(int = 0) : cur(), first(), last() {}
|
||||
debug_iterator(const debug_iterator& x)
|
||||
: cur(x.cur), first(x.first), last(x.last) {}
|
||||
debug_iterator& operator=(const debug_iterator& x)
|
||||
|
Reference in New Issue
Block a user