Kaydet (Commit) 515de997 authored tarafından Herbert Dürr's avatar Herbert Dürr

fix constness issue causing a build breaker

üst 9f65bceb
......@@ -947,7 +947,7 @@ struct CStringHash
size_t operator()( const char* p) const {
size_t n = 0;
while( *p)
n += 4*n + *static_cast<unsigned char*>(p++);
n += 4*n + *static_cast<const unsigned char*>(p++);
return n;
}
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment