Fix begin() and end() members and add tests.

Fixes #6346.

[SVN r79340]
This commit is contained in:
John Maddock
2012-07-07 18:36:25 +00:00
parent 3bfba1a7cf
commit ab6b0d9971
4 changed files with 11 additions and 3 deletions

View File

@ -48,6 +48,10 @@ void test_empty(boost::basic_regex<charT, traits>& r)
{
BOOST_REGEX_TEST_ERROR("Invalid value returned from basic_regex<>::status().", charT);
}
if(r.begin() != r.end())
{
BOOST_REGEX_TEST_ERROR("Invalid value returned from basic_regex<>::begin().", charT);
}
}
template<class charT, class traits>