[svn-r4707]

Purpose:
    Bug fixing
Description:
    H5IdComponent::operator= shouldn't be virtual because the subclass'
    operator= have different type for the rhs argument.  Removed virtual
Platforms tested:
    SunOS 5.7 (arabica)
    IRIX64 (modi4) - only tested that the warnings went away, still working
                        on other configuration problems.
This commit is contained in:
Binh-Minh Ribler
2001-12-12 14:29:14 -05:00
parent 47d88766db
commit fd48265a02
5 changed files with 7 additions and 17 deletions

View File

@@ -42,7 +42,7 @@ class IdComponent {
bool noReference();
// Assignment operator
virtual IdComponent& operator=( const IdComponent& rhs );
IdComponent& operator=( const IdComponent& rhs );
// Resets this IdComponent instance
//template <class Type>