Add docs in INSTALL file
http://code.google.com/p/bullet/issues/detail?id=278 Fix warning in btHashMap.h http://code.google.com/p/bullet/issues/detail?id=276 Thanks both to ejtttje
This commit is contained in:
@@ -18,8 +18,8 @@ struct btHashString
|
||||
:m_string(name)
|
||||
{
|
||||
/* magic numbers from http://www.isthe.com/chongo/tech/comp/fnv/ */
|
||||
static const unsigned int InitialFNV = 2166136261;
|
||||
static const unsigned int FNVMultiple = 16777619;
|
||||
static const unsigned int InitialFNV = 2166136261u;
|
||||
static const unsigned int FNVMultiple = 16777619u;
|
||||
|
||||
/* Fowler / Noll / Vo (FNV) Hash */
|
||||
unsigned int hash = InitialFNV;
|
||||
|
||||
Reference in New Issue
Block a user