diff --git a/Misc/Utilities-InlineImpl.h b/Misc/Utilities-InlineImpl.h index 93b780ec..dc047153 100644 --- a/Misc/Utilities-InlineImpl.h +++ b/Misc/Utilities-InlineImpl.h @@ -124,7 +124,7 @@ namespace Utility } template - UniqueArray & UniqueArray::operator = ( const UniquePointer &donor ) + UniqueArray & UniqueArray::operator = ( const UniqueArray &donor ) { SafeDeleteArray( this->ownedArray ); this->ownedArray = donor.ownedInstance; @@ -132,13 +132,13 @@ namespace Utility } template template - template Type & UniqueArray::operator [] ( Index i ) + Type & UniqueArray::operator [] ( Index i ) { return this->ownedArray[i]; } template template - template const Type & UniqueArray::operator [] ( Index i ) const + const Type & UniqueArray::operator [] ( Index i ) const { return this->ownedArray[i]; }