Last change
on this file since 2685 was
2670,
checked in by rgrieder, 16 years ago
|
- Added version info (written by the linker) to all libraries
- Target dependency bugfix for msvc in doc/api
- Fixed possibly non existent html directory when installing docs
- Merged the three Bullet libraries into a single one
- No warnings at all from third party libraries
- Performance tweak in ceguilua CMake files
|
File size:
654 bytes
|
Rev | Line | |
---|
[2670] | 1 | --- LinearMath\btScalar.h So Feb 15 18:28:13 2009 |
---|
| 2 | +++ LinearMath\btScalar.h Sa Feb 14 23:04:53 2009 |
---|
| 3 | @@ -227,7 +227,11 @@ |
---|
| 4 | SIMD_FORCE_INLINE btScalar btAtan2(btScalar x, btScalar y) { return atan2f(x, y); } |
---|
| 5 | SIMD_FORCE_INLINE btScalar btExp(btScalar x) { return expf(x); } |
---|
| 6 | SIMD_FORCE_INLINE btScalar btLog(btScalar x) { return logf(x); } |
---|
| 7 | -SIMD_FORCE_INLINE btScalar btPow(btScalar x,btScalar y) { return powf(x,y); } |
---|
| 8 | + #if defined( __MINGW32__ ) |
---|
| 9 | + SIMD_FORCE_INLINE btScalar btPow(btScalar x,btScalar y) { return pow(x,y); } |
---|
| 10 | + #else |
---|
| 11 | + SIMD_FORCE_INLINE btScalar btPow(btScalar x,btScalar y) { return powf(x,y); } |
---|
| 12 | + #endif |
---|
| 13 | |
---|
| 14 | #endif |
---|
| 15 | |
---|
Note: See
TracBrowser
for help on using the repository browser.