Changed: Minor change

This commit is contained in:
kervala 2015-12-29 22:07:10 +01:00
parent a5e23cb0f9
commit 301c3b2b8a

View file

@ -91,7 +91,7 @@ private:
struct CHash
{
enum { bucket_size = 4, min_buckets = 8, };
enum { bucket_size = 4, min_buckets = 8 };
size_t operator () (const TEntityIndex& index) const { return index.getIndex(); }
bool operator() (const TEntityIndex& left, const TEntityIndex& right) { return left < right; }
};