| 43 | typename CharT, |
| 44 | typename RegexTraitsT> |
| 45 | inline detail::find_regexF< basic_regex<CharT, RegexTraitsT> > |
| 46 | regex_finder( |
| 47 | const basic_regex<CharT, RegexTraitsT>& Rx, |
| 48 | match_flag_type MatchFlags=match_default ) |
| 49 | { |
| 50 | return detail:: |
| 51 | find_regexF< |
| 52 | basic_regex<CharT, RegexTraitsT> >( Rx, MatchFlags ); |
| 53 | } |
| 54 | |
| 55 | // regex_formater ---------------------------------------------// |
| 56 |
no outgoing calls
no test coverage detected