aboutsummaryrefslogtreecommitdiff
path: root/src/stable/list.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/stable/list.h')
-rw-r--r--src/stable/list.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/stable/list.h b/src/stable/list.h
index 9381297..c1a5559 100644
--- a/src/stable/list.h
+++ b/src/stable/list.h
@@ -269,6 +269,12 @@ namespace Bu
269 return lNew; 269 return lNew;
270 } 270 }
271 271
272 MyType &operator=( const MyType &src )
273 {
274 SharedCore<MyType, Core>::_softCopy( src );
275 return *this;
276 }
277
272 bool operator==( const MyType &rhs ) const 278 bool operator==( const MyType &rhs ) const
273 { 279 {
274 if( getSize() != rhs.getSize() ) 280 if( getSize() != rhs.getSize() )
@@ -678,6 +684,11 @@ namespace Bu
678 pLink( i.pLink ) 684 pLink( i.pLink )
679 { 685 {
680 } 686 }
687
688 const_iterator( const const_iterator &i ) :
689 pLink( i.pLink )
690 {
691 }
681 692
682 bool operator==( const const_iterator &oth ) const 693 bool operator==( const const_iterator &oth ) const
683 { 694 {