diff options
author | Lee Newberg <35611400+Leengit@users.noreply.github.com> | 2021-05-19 20:48:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-19 20:48:20 (GMT) |
commit | d179f9d79ca9ed3f94715b907e3d8426a26ee766 (patch) | |
tree | 558c0a42a83f5a297cbacf973ca013828cf2cc87 /release_docs | |
parent | a5d1897225305fb870761822834f53d3d27fd416 (diff) | |
download | hdf5-d179f9d79ca9ed3f94715b907e3d8426a26ee766.zip hdf5-d179f9d79ca9ed3f94715b907e3d8426a26ee766.tar.gz hdf5-d179f9d79ca9ed3f94715b907e3d8426a26ee766.tar.bz2 |
BUG: DataSet assignment operator is missing (#503)
* BUG: DataSet assignment operator is missing
* Some compilers complain if the copy constructor is given explicitly
but the assignment operator is implicitly set to default.
* Explicitly defining the assignment operator allows us to properly
handle reference counters for shared resources.
* BUG: DataSet assignment operator is missing.
* Mimicking code of H5DataType::operator() as suggested by @bmribler.
* Added test
Description:
Added test for DataSet::operator= that Leengit added
Platform tested:
Linux/64 (jelly)
* Removed Author field.
* Commit clang format changes.
* Entry for Leengit's github PR #503
* Removed lines left by mistake
Co-authored-by: Binh-Minh Ribler <bmribler@hdfgroup.org>
Co-authored-by: Larry Knox <lrknox@hdfgroup.org>
Diffstat (limited to 'release_docs')
-rw-r--r-- | release_docs/RELEASE.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 9e99e66..802c6d1 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -1157,7 +1157,12 @@ Bug Fixes since HDF5-1.12.0 release C++ APIs -------- - - + - Added DataSet::operator= + + Some compilers complain if the copy constructor is given explicitly + but the assignment operator is implicitly set to default. + + (2021/05/19) Testing |