| 67 | class url_pattern_parser { |
| 68 | public: |
| 69 | url_pattern_parser(F& encoding_callback_, |
| 70 | std::string_view segment_wildcard_regexp_) |
| 71 | : encoding_callback(encoding_callback_), |
| 72 | segment_wildcard_regexp(segment_wildcard_regexp_) {} |
| 73 | |
| 74 | bool can_continue() const { return index < tokens.size(); } |
| 75 |
nothing calls this directly
no outgoing calls
no test coverage detected