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.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/stable/array.h b/src/stable/array.h
index b089bda..ca66213 100644
--- a/src/stable/array.h
+++ b/src/stable/array.h
@@ -177,6 +177,14 @@ namespace Bu
177 return !(*this == src); 177 return !(*this == src);
178 } 178 }
179 179
180 MyType &operator=( const MyType &src )
181 {
182 SharedCore<MyType, Core>::_softCopy( src );
183
184 return *this;
185 }
186
187
180 /** 188 /**
181 * Clear the array. 189 * Clear the array.
182 */ 190 */