diff options
author | Mike Buland <eichlan@xagasoft.com> | 2006-07-14 07:55:14 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2006-07-14 07:55:14 +0000 |
commit | f0f38e0f164b7e8b9132665407445d93f33be7ad (patch) | |
tree | 85bad44d80eb9df45a9f7ea960b51d1b2c003843 /src/ringlist.h | |
parent | 74f94e9b20c93b93ad8b9091474f6368fc79c697 (diff) | |
download | libbu++-f0f38e0f164b7e8b9132665407445d93f33be7ad.tar.gz libbu++-f0f38e0f164b7e8b9132665407445d93f33be7ad.tar.bz2 libbu++-f0f38e0f164b7e8b9132665407445d93f33be7ad.tar.xz libbu++-f0f38e0f164b7e8b9132665407445d93f33be7ad.zip |
Made everything have a virtual deconstructor. This is apparently very
important.
Diffstat (limited to '')
-rw-r--r-- | src/ringlist.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ringlist.h b/src/ringlist.h index 1a4d3a9..bc069f3 100644 --- a/src/ringlist.h +++ b/src/ringlist.h | |||
@@ -28,7 +28,7 @@ public: | |||
28 | /** | 28 | /** |
29 | * Clean up the data structures, but not the contained elements. | 29 | * Clean up the data structures, but not the contained elements. |
30 | */ | 30 | */ |
31 | ~RingList(); | 31 | virtual ~RingList(); |
32 | 32 | ||
33 | /** | 33 | /** |
34 | * Get an element at the specified index. | 34 | * Get an element at the specified index. |