RE: [boost][regex] Bug in regex 1.32 ?

27 Dec
2004
27 Dec
'04
2 p.m.
boost::regex re("x", boost::regex_constants::icase); That should be: boost::regex re("x", boost::regex::perl|boost::regex_constants::icase);
Or boost::regex re("x", boost::regex::normal | boost::regex::icase) Ok, I have overlooked this statement in the documentation: "A valid value of type syntax_option_type will always have exactly one of the elements normal, basic, extended, awk, grep, egrep, sed or perl set". My fault - Thank you! Jan
7470
Age (days ago)
7470
Last active (days ago)
0 comments
1 participants
participants (1)
-
Jan Hermelink