Added extra non-greedy repeat tests,

fixed concept checks for vc6 (they don't work, and won't work).


[SVN r22423]
This commit is contained in:
John Maddock
2004-03-02 17:00:15 +00:00
parent 89515b9a8e
commit 4b7f14e72d
2 changed files with 7 additions and 0 deletions

View File

@ -88,6 +88,8 @@ int main()
r.assign(c_exp, c_exp+1);
r.assign(c_exp, c_exp+1, boost::regex::perl);
#endif
#ifndef BOOST_NO_STD_ITERATOR
//
//check iterators work with std lib algorithms:
//
@ -97,6 +99,7 @@ int main()
boost::cregex_token_iterator rk, rm;
std::distance(rk, rm);
std::advance(rk, 0);
#endif
return 0;
}