aboutsummaryrefslogtreecommitdiff
path: root/src/list.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2009-08-21 22:12:10 +0000
committerMike Buland <eichlan@xagasoft.com>2009-08-21 22:12:10 +0000
commit78499c848a9c2bafe1db1ec7ceaf8556e2d7c7cc (patch)
tree60cc931b6d398b478ac99d6f946e6fbc72d24fb2 /src/list.h
parent539d6bf53bcece62e29d3d7d900b83dc03275b65 (diff)
downloadlibbu++-78499c848a9c2bafe1db1ec7ceaf8556e2d7c7cc.tar.gz
libbu++-78499c848a9c2bafe1db1ec7ceaf8556e2d7c7cc.tar.bz2
libbu++-78499c848a9c2bafe1db1ec7ceaf8556e2d7c7cc.tar.xz
libbu++-78499c848a9c2bafe1db1ec7ceaf8556e2d7c7cc.zip
Added loads of debugging to sharedcore, we're sure it's to blame, but not as
much anymore, for the fishtrax issues, maybe.
Diffstat (limited to 'src/list.h')
-rw-r--r--src/list.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/list.h b/src/list.h
index d06bc9e..9574bca 100644
--- a/src/list.h
+++ b/src/list.h
@@ -33,6 +33,12 @@ namespace Bu
33 pLast( NULL ), 33 pLast( NULL ),
34 nSize( 0 ) 34 nSize( 0 )
35 { } 35 { }
36
37 virtual ~ListCore()
38 {
39 clear();
40 }
41
36 Link *pFirst; 42 Link *pFirst;
37 Link *pLast; 43 Link *pLast;
38 long nSize; 44 long nSize;