| 31 | }; |
| 32 | |
| 33 | Matcher::Matcher(const std::string &pattern) : impl(std::make_unique<Impl>()), pattern(pattern) { |
| 34 | impl->regex = std::regex(pattern, std::regex_constants::ECMAScript | std::regex_constants::icase | |
| 35 | std::regex_constants::optimize); |
| 36 | } |
| 37 | |
| 38 | Matcher::~Matcher() {} |
| 39 |
nothing calls this directly
no outgoing calls
no test coverage detected