| 119 | template<typename Char> struct CaseInsensitiveCompareASCII { |
| 120 | public: |
| 121 | bool operator()(Char x, Char y) const { |
| 122 | return ToLowerASCII(x) == ToLowerASCII(y); |
| 123 | } |
| 124 | }; |
| 125 | |
| 126 | // These threadsafe functions return references to globally unique empty |
nothing calls this directly
no test coverage detected