mirror of
https://github.com/boostorg/regex.git
synced 2026-01-26 09:12:40 +01:00
16 lines
376 B
C++
16 lines
376 B
C++
|
|
#if defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193933523))
|
|
#define BOOST_REGEX_USE_STD_MODULE
|
|
#endif
|
|
|
|
module boost.regex;
|
|
|
|
namespace boost::re_detail_600 {
|
|
|
|
bool factory_find(perl_matcher<std::wstring::const_iterator, match_results<std::wstring::const_iterator>::allocator_type, wregex::traits_type>& m)
|
|
{
|
|
return m.find();
|
|
}
|
|
|
|
}
|