fix: accidently enable memory-leak debug test

This commit is contained in:
Erwin Coumans
2016-07-16 21:36:40 -07:00
parent c54a61b97a
commit 8c69bfb042

View File

@@ -50,10 +50,10 @@ int main(int argc, char* argv[])
} }
//#ifdef BT_DEBUG_MEMORY_ALLOCATIONS #ifdef BT_DEBUG_MEMORY_ALLOCATIONS
int numBytesLeaked = btDumpMemoryLeaks(); int numBytesLeaked = btDumpMemoryLeaks();
btAssert(numBytesLeaked==0); btAssert(numBytesLeaked==0);
//#endif//BT_DEBUG_MEMORY_ALLOCATIONS #endif//BT_DEBUG_MEMORY_ALLOCATIONS
return 0; return 0;
} }