diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2001-12-12 19:29:14 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2001-12-12 19:29:14 (GMT) |
commit | fd48265a02402e3911dadf4dc6895daa1eb39543 (patch) | |
tree | 1a9d16abc3f3a9fbc7c41f7fc39dafea67988e27 /c++/src/H5IdComponent.h | |
parent | 47d88766dbee3c631c842639d44c362c2b7b8e44 (diff) | |
download | hdf5-fd48265a02402e3911dadf4dc6895daa1eb39543.zip hdf5-fd48265a02402e3911dadf4dc6895daa1eb39543.tar.gz hdf5-fd48265a02402e3911dadf4dc6895daa1eb39543.tar.bz2 |
[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.
Diffstat (limited to 'c++/src/H5IdComponent.h')
-rw-r--r-- | c++/src/H5IdComponent.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/c++/src/H5IdComponent.h b/c++/src/H5IdComponent.h index 31e9acd..09a227b 100644 --- a/c++/src/H5IdComponent.h +++ b/c++/src/H5IdComponent.h @@ -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> |