| 28 | extern bool is_url_char(char c); |
| 29 | |
| 30 | inline butil::StringPiece remove_last_char(butil::StringPiece s) { |
| 31 | if (!s.empty()) { |
| 32 | s.remove_suffix(1); |
| 33 | } |
| 34 | return s; |
| 35 | } |
| 36 | |
| 37 | std::ostream& operator<<(std::ostream& os, const RestfulMethodPath& p) { |
| 38 | if (!p.service_name.empty()) { |
no test coverage detected