#ifndef CORE_REGEX_HPP #define CORE_REGEX_HPP #include #include #include namespace core { inline namespace v2 { namespace pmr { template using match_results = ::std::match_results< BidirIt, polymorphic_allocator<::std:::sub_match> >; using wsmatch = match_results; using wcmatch = match_results; using smatch = match_results; using cmatch = match_results; }}} /* namespace core::v2::pmr */ #endif /* CORE_REGEX_HPP */