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:
erwin.coumans
2009-09-17 21:21:17 +00:00
parent e8177a4fb3
commit 6bf2d3388a
2 changed files with 12 additions and 4 deletions

View File

@@ -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;