aboutsummaryrefslogtreecommitdiff
path: root/src/stable/array.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/stable/array.h')
-rw-r--r--src/stable/array.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/stable/array.h b/src/stable/array.h
index ca66213..86b57d9 100644
--- a/src/stable/array.h
+++ b/src/stable/array.h
@@ -687,6 +687,12 @@ namespace Bu
687 _hardCopy(); 687 _hardCopy();
688 core->erase( i.iPos ); 688 core->erase( i.iPos );
689 } 689 }
690
691 void erase( int i )
692 {
693 _hardCopy();
694 core->erase( i );
695 }
690 696
691 void erase( const value &v ) 697 void erase( const value &v )
692 { 698 {