| 75 | class url_pattern_part { |
| 76 | public: |
| 77 | url_pattern_part(url_pattern_part_type _type, std::string&& _value, |
| 78 | url_pattern_part_modifier _modifier) |
| 79 | : type(_type), value(std::move(_value)), modifier(_modifier) {} |
| 80 | |
| 81 | url_pattern_part(url_pattern_part_type _type, std::string&& _value, |
| 82 | url_pattern_part_modifier _modifier, std::string&& _name, |
nothing calls this directly
no outgoing calls
no test coverage detected