I'm new to Bullet and this question may seem stupid.
I downloaded the latest Bullet 2.75 Physics SDK and in the file "btQuickProf.h" I came across this line:
Code: Select all
#define mymin(a,b) (a > b ? a : b)
But it actually computes the maximum of a and b!