diff options
author | Larry Knox <lrknox@hdfgroup.org> | 2021-05-18 19:23:17 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-18 19:23:17 (GMT) |
commit | a5d1897225305fb870761822834f53d3d27fd416 (patch) | |
tree | 2f031b5ab0fcc32259d205db4857b40abf7cda91 /c++ | |
parent | 96aa5923d3eb4991ef355404b153ec9e66864e7c (diff) | |
download | hdf5-a5d1897225305fb870761822834f53d3d27fd416.zip hdf5-a5d1897225305fb870761822834f53d3d27fd416.tar.gz hdf5-a5d1897225305fb870761822834f53d3d27fd416.tar.bz2 |
Revert addition of & to 2 parameters in DSetCreatPropList::setVirtual to (#652)
maintain binary compatibility with released HDF5 versions.
Diffstat (limited to 'c++')
-rw-r--r-- | c++/src/H5DcreatProp.cpp | 4 | ||||
-rw-r--r-- | c++/src/H5DcreatProp.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/c++/src/H5DcreatProp.cpp b/c++/src/H5DcreatProp.cpp index 34be7ba..a9270fd 100644 --- a/c++/src/H5DcreatProp.cpp +++ b/c++/src/H5DcreatProp.cpp @@ -774,8 +774,8 @@ DSetCreatPropList::setVirtual(const DataSpace &vspace, const char *src_fname, co // Programmer Binh-Minh Ribler - Mar, 2017 //-------------------------------------------------------------------------- void -DSetCreatPropList::setVirtual(const DataSpace &vspace, const H5std_string &src_fname, - const H5std_string &src_dsname, const DataSpace &sspace) const +DSetCreatPropList::setVirtual(const DataSpace &vspace, const H5std_string src_fname, + const H5std_string src_dsname, const DataSpace &sspace) const { setVirtual(vspace, src_fname.c_str(), src_dsname.c_str(), sspace); } diff --git a/c++/src/H5DcreatProp.h b/c++/src/H5DcreatProp.h index a576518..b822c25 100644 --- a/c++/src/H5DcreatProp.h +++ b/c++/src/H5DcreatProp.h @@ -123,7 +123,7 @@ class H5_DLLCPP DSetCreatPropList : public ObjCreatPropList { // Maps elements of a virtual dataset to elements of the source dataset. void setVirtual(const DataSpace &vspace, const char *src_fname, const char *src_dsname, const DataSpace &sspace) const; - void setVirtual(const DataSpace &vspace, const H5std_string &src_fname, const H5std_string &src_dsname, + void setVirtual(const DataSpace &vspace, const H5std_string src_fname, const H5std_string src_dsname, const DataSpace &sspace) const; ///\brief Returns this class name. |