remove some quicksort test that breaks the build under MSVC 2005 SP1

Fixes Issue 680 together with this commit:
https://code.google.com/p/bullet/source/detail?r=2632
This commit is contained in:
erwin.coumans
2012-12-20 22:47:54 +00:00
parent 02a22f6329
commit 74c028ebae

View File

@@ -20,21 +20,11 @@ subject to the following restrictions:
static bool cmp(const int& p1, const int& p2) {
return p1<p2;
}
int main(int argc,char** argv)
{
btAlignedObjectArray<int> bla;
bla.push_back(8);
bla.push_back(6);
bla.push_back(6);
bla.push_back(4);
bla.push_back(9);
bla.quickSort(cmp);
VoronoiFractureDemo ccdDemo;
ccdDemo.initPhysics();