2
0
mirror of https://github.com/boostorg/regex.git synced 2026-01-20 05:02:15 +00:00
Files
regex/module/regex_cfind.cpp
jzmaddock 2c0058a902 Hide key template instances behind factory functions.
And provide a separate "module library"
Update testing scripts.
2024-04-18 16:37:12 +01:00

12 lines
207 B
C++

module boost.regex;
namespace boost::re_detail_600 {
bool factory_find(perl_matcher<const char*, match_results<const char*>::allocator_type, regex::traits_type>& m)
{
return m.find();
}
}