forked from boostorg/regex
Updated regex code with tentative support for partial matches
[SVN r8160]
This commit is contained in:
@ -898,7 +898,8 @@ public:
|
||||
|
||||
size_type BOOST_RE_CALL size()const
|
||||
{
|
||||
return (*this)[0].matched ? ref->cmatches : 0;
|
||||
//return (*this)[0].matched ? ref->cmatches : 0;
|
||||
return ref->cmatches;
|
||||
}
|
||||
|
||||
const sub_match<iterator>& BOOST_RE_CALL operator[](int n) const
|
||||
|
Reference in New Issue
Block a user