| 226 | hash = ((hash << 5) + hash) + c; /* hash * 33 + c */ |
| 227 | } |
| 228 | inline void clear() |
| 229 | { |
| 230 | hash = HashInitialValue; |
| 231 | } |
| 232 | |
| 233 | /// We initialize the hash with zero, because we want empty strings to create a zero hash(invalid) |
| 234 | unsigned int hash = HashInitialValue; |
no outgoing calls
no test coverage detected