aboutsummaryrefslogtreecommitdiff
path: root/src/unstable
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/unstable/cachebase.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/unstable/cachebase.h b/src/unstable/cachebase.h
index 9ac1b8c..830f5fe 100644
--- a/src/unstable/cachebase.h
+++ b/src/unstable/cachebase.h
@@ -32,15 +32,15 @@ namespace Bu
32 bDeleted( false ), 32 bDeleted( false ),
33 pObject( pObject ) 33 pObject( pObject )
34 { 34 {
35 Bu::println("CacheEntry::CacheEntry: registering pObject (0x%1)"). 35 //Bu::println("CacheEntry::CacheEntry: registering pObject (0x%1)").
36 arg( reinterpret_cast<ptrdiff_t>(pObject), Bu::Fmt::hex() ); 36 // arg( reinterpret_cast<ptrdiff_t>(pObject), Bu::Fmt::hex() );
37 } 37 }
38 38
39 virtual ~CacheEntry() 39 virtual ~CacheEntry()
40 { 40 {
41 mEntry.lock(); 41 mEntry.lock();
42 Bu::println("CacheEntry::~CacheEntry: deleting pObject (0x%1)"). 42 //Bu::println("CacheEntry::~CacheEntry: deleting pObject (0x%1)").
43 arg( reinterpret_cast<ptrdiff_t>(pObject), Bu::Fmt::hex() ); 43 // arg( reinterpret_cast<ptrdiff_t>(pObject), Bu::Fmt::hex() );
44 delete pObject; 44 delete pObject;
45 mEntry.unlock(); 45 mEntry.unlock();
46 } 46 }