some minor fixes for BulletMultiThreaded

This commit is contained in:
erwin.coumans
2008-11-16 06:39:45 +00:00
parent 686accab16
commit f474e58fb1
4 changed files with 14 additions and 2 deletions

View File

@@ -1,6 +1,13 @@
#ifndef __PPU_ADDRESS_SPACE_H
#define __PPU_ADDRESS_SPACE_H
#ifdef WIN32
//stop those casting warnings until we have a better solution for ppu_address_t / void* / uint64 conversions
#pragma warning (disable: 4311)
#pragma warning (disable: 4312)
#endif //WIN32
#ifdef USE_ADDR64
typedef uint64_t ppu_address_t;
#else