Call boost::regex, not boost::make_regex
This commit is contained in:
parent
c86bbd4547
commit
150ca971ad
1 changed files with 2 additions and 2 deletions
|
|
@ -353,7 +353,7 @@ inline bool category_matches(const char * cat) {
|
||||||
boost::make_u32regex(_log_category->c_str(),
|
boost::make_u32regex(_log_category->c_str(),
|
||||||
boost::regex::perl | boost::regex::icase);
|
boost::regex::perl | boost::regex::icase);
|
||||||
#else
|
#else
|
||||||
boost::make_regex(_log_category->c_str(),
|
boost::regex(_log_category->c_str(),
|
||||||
boost::regex::perl | boost::regex::icase);
|
boost::regex::perl | boost::regex::icase);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue