From 345926296f748db5ff283ce69c0ed4d563fcc8ff Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Wed, 18 Aug 2021 22:11:41 -0700 Subject: Updating issues discovered using g++ 10 --- src/stable/array.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/stable/array.h') 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 return !(*this == src); } + MyType &operator=( const MyType &src ) + { + SharedCore::_softCopy( src ); + + return *this; + } + + /** * Clear the array. */ -- cgit v1.2.3