| 195 | }; |
| 196 | |
| 197 | struct StrHashEntry { |
| 198 | const char * ptr; |
| 199 | uint32_t length; |
| 200 | StrHashEntry() : ptr(nullptr), length(0) {} |
| 201 | StrHashEntry( const char * p, uint32_t l ) : ptr(p), length(l) {} |
| 202 | }; |
| 203 | |
| 204 | struct StrEqPred { |
| 205 | __forceinline bool operator()( const StrHashEntry & a, const StrHashEntry & b ) const { |
no outgoing calls
no test coverage detected