summaryrefslogtreecommitdiffstats
path: root/c++/src/H5File.h
diff options
context:
space:
mode:
authorbmribler <39579120+bmribler@users.noreply.github.com>2022-08-12 18:33:30 (GMT)
committerGitHub <noreply@github.com>2022-08-12 18:33:30 (GMT)
commit10e4dd4ef135ea39b0237ccd2ce2391f14340498 (patch)
tree2dc297fdaec600dc7e960d2ca10185ca1347153d /c++/src/H5File.h
parent25ef5340396a786fe63072a9f057cd550c86668b (diff)
downloadhdf5-10e4dd4ef135ea39b0237ccd2ce2391f14340498.zip
hdf5-10e4dd4ef135ea39b0237ccd2ce2391f14340498.tar.gz
hdf5-10e4dd4ef135ea39b0237ccd2ce2391f14340498.tar.bz2
Fix c++ test failure (#2005)
* Fix test failure Description: - Added two H5File constructors to open file with non-default fapl - Added non-default fapl to test functions - Commented certain renaming attribute tests because of the unexpected behavior in renaming an attribute (HDFFV-11327) Platform tested: Linux/64 (jelly) * Committing clang-format changes Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'c++/src/H5File.h')
-rw-r--r--c++/src/H5File.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/c++/src/H5File.h b/c++/src/H5File.h
index 67c033c..38faeef 100644
--- a/c++/src/H5File.h
+++ b/c++/src/H5File.h
@@ -31,6 +31,8 @@ class H5_DLLCPP H5File : public Group {
H5File(const H5std_string &name, unsigned int flags,
const FileCreatPropList &create_plist = FileCreatPropList::DEFAULT,
const FileAccPropList &access_plist = FileAccPropList::DEFAULT);
+ H5File(const char *name, unsigned int flags, const FileAccPropList &access_plist);
+ H5File(const H5std_string &name, unsigned int flags, const FileAccPropList &access_plist);
// Open the file
void openFile(const H5std_string &name, unsigned int flags,