| 33 | } |
| 34 | |
| 35 | static inline bool checkExpression(const StringRef & match_str, const std::pair<String, CompiledRegexPtr> & expression) |
| 36 | { |
| 37 | if (expression.second) |
| 38 | return checkRegexExpression(match_str, expression.second); |
| 39 | |
| 40 | return match_str == expression.first; |
| 41 | } |
| 42 | |
| 43 | static inline auto methodsFilter(Poco::Util::AbstractConfiguration & config, const std::string & config_path) |
| 44 | { |
no test coverage detected