diff options
author | Mike Buland <eichlan@xagasoft.com> | 2009-08-21 22:12:10 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2009-08-21 22:12:10 +0000 |
commit | 78499c848a9c2bafe1db1ec7ceaf8556e2d7c7cc (patch) | |
tree | 60cc931b6d398b478ac99d6f946e6fbc72d24fb2 /src/list.h | |
parent | 539d6bf53bcece62e29d3d7d900b83dc03275b65 (diff) | |
download | libbu++-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.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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; |