aboutsummaryrefslogtreecommitdiff
path: root/src/list.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/list.cpp')
-rw-r--r--src/list.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/list.cpp b/src/list.cpp
index 3e871d6..d15f3b9 100644
--- a/src/list.cpp
+++ b/src/list.cpp
@@ -15,6 +15,10 @@ Gats::List::List()
15 15
16Gats::List::~List() 16Gats::List::~List()
17{ 17{
18 for( iterator i = begin(); i; i++ )
19 {
20 delete *i;
21 }
18} 22}
19 23
20void Gats::List::write( Bu::Stream &rOut ) const 24void Gats::List::write( Bu::Stream &rOut ) const