From 8c69bfb04265c0df4dbc31f653d67fcff3f688dd Mon Sep 17 00:00:00 2001 From: Erwin Coumans Date: Sat, 16 Jul 2016 21:36:40 -0700 Subject: [PATCH] fix: accidently enable memory-leak debug test --- examples/ExampleBrowser/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/ExampleBrowser/main.cpp b/examples/ExampleBrowser/main.cpp index f5b05211c..d0f132c1a 100644 --- a/examples/ExampleBrowser/main.cpp +++ b/examples/ExampleBrowser/main.cpp @@ -50,10 +50,10 @@ int main(int argc, char* argv[]) } -//#ifdef BT_DEBUG_MEMORY_ALLOCATIONS +#ifdef BT_DEBUG_MEMORY_ALLOCATIONS int numBytesLeaked = btDumpMemoryLeaks(); btAssert(numBytesLeaked==0); -//#endif//BT_DEBUG_MEMORY_ALLOCATIONS +#endif//BT_DEBUG_MEMORY_ALLOCATIONS return 0; }