2024-04-18 16:37:12 +01:00
|
|
|
|
2024-04-18 20:02:16 +01:00
|
|
|
module;
|
|
|
|
|
|
2024-04-19 13:28:21 +01:00
|
|
|
#if defined(__cpp_lib_modules) || (defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 193833135))
|
2024-04-18 16:37:12 +01:00
|
|
|
#define BOOST_REGEX_USE_STD_MODULE
|
|
|
|
|
#endif
|
|
|
|
|
|
2024-04-19 12:23:50 +01:00
|
|
|
#if !defined(BOOST_REGEX_USE_STD_MODULE) && !defined(MSVC_EXPERIMENTAL_STD_MODULE)
|
2024-04-18 20:02:16 +01:00
|
|
|
#include <string>
|
|
|
|
|
#endif
|
|
|
|
|
|
2024-04-18 16:37:12 +01:00
|
|
|
module boost.regex;
|
|
|
|
|
|
2024-04-19 13:19:09 +01:00
|
|
|
#if !defined(BOOST_REGEX_USE_STD_MODULE) && defined(MSVC_EXPERIMENTAL_STD_MODULE)
|
|
|
|
|
import std.core;
|
|
|
|
|
#endif
|
|
|
|
|
|
2024-04-18 16:37:12 +01:00
|
|
|
namespace boost::re_detail_600 {
|
|
|
|
|
|
|
|
|
|
bool factory_match(perl_matcher<std::wstring::const_iterator, match_results<std::wstring::const_iterator>::allocator_type, wregex::traits_type>& m)
|
|
|
|
|
{
|
|
|
|
|
return m.match();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|