From 8b17df5b486f31abcce9fff2902e2418f27fb42b Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Wed, 19 Sep 2007 08:33:43 -0600 Subject: [PATCH] set verbose constants to false in heap.cpp --- src/heap.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/heap.cpp b/src/heap.cpp index 30b38c26d6..73e9a9c42e 100644 --- a/src/heap.cpp +++ b/src/heap.cpp @@ -14,8 +14,8 @@ const unsigned Top = ~static_cast(0); const unsigned InitialGen2CapacityInBytes = 4 * 1024 * 1024; -const bool Verbose = true; -const bool Verbose2 = true; +const bool Verbose = false; +const bool Verbose2 = false; const bool Debug = false; class Context;