remove Blender-hack for older compilers (just apply the hack only in the Blender copy of Bullet)

This commit is contained in:
erwin.coumans 2009-06-09 05:10:06 +00:00
parent a9141d5daf
commit b0d5fbcc6c

View File

@ -155,14 +155,6 @@ inline int btGetVersion()
#endif //__CELLOS_LV2__
#endif
/// older compilers (gcc 3.x) and Sun needs double version of sqrt etc.
/// exclude Apple Intel (i's assumed to be a Macbook or new Intel Dual Core Processor)
#if defined (__sun) || defined (__sun__) || defined (__sparc) || (defined (__APPLE__) && ! defined (__i386__))
//use slow double float precision operation on those platforms
#ifndef BT_USE_DOUBLE_PRECISION
#define BT_FORCE_DOUBLE_FUNCTIONS
#endif
#endif
///The btScalar type abstracts floating point numbers, to easily switch between double and single floating point precision.
#if defined(BT_USE_DOUBLE_PRECISION)