From 23b7568ab7a87a79c186b8ddf3d3db4f1f934b06 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 12 Sep 2006 01:00:52 +0000 Subject: Bug fixes. git-svn-id: http://svn.drobilla.net/lad/ingen@130 a436a847-0d15-0410-975c-d299462d15a1 --- src/common/util/CountedPtr.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/common') diff --git a/src/common/util/CountedPtr.h b/src/common/util/CountedPtr.h index 81604e45..d1a48a58 100644 --- a/src/common/util/CountedPtr.h +++ b/src/common/util/CountedPtr.h @@ -36,14 +36,14 @@ namespace boost { assert(std::find(counted_ptr_counters.begin(), counted_ptr_counters.end(), (void*)object) == counted_ptr_counters.end()); counted_ptr_counters.push_back(object); - //std::cerr << "Creating " << typeid(object).name() << " Pointer to " - //<< object << std::endl; + //std::cerr << "Creating CountedPtr to " + // << object << ", count = " << cnt << std::endl; } static void sp_scalar_destructor_hook(void* object, unsigned long cnt, void* ptr) { counted_ptr_counters.remove(object); - //std::cerr << "Destroying " << typeid(object).name() << " Pointer to " - //<< object << std::endl; + //std::cerr << "Destroying CountedPtr to " + // << object << ", count = " << cnt << std::endl; } } -- cgit v1.2.1