| 65 | |
| 66 | struct LessThanByName { |
| 67 | bool operator()(const HttpMethodPair& p1, const HttpMethodPair& p2) const { |
| 68 | return strcasecmp(p1.str, p2.str) < 0; |
| 69 | } |
| 70 | }; |
| 71 | |
| 72 | static void BuildHttpMethodMaps() { |
nothing calls this directly
no test coverage detected