diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2001-10-15 19:35:20 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2001-10-15 19:35:20 (GMT) |
commit | 05eb7b7a848f94061f15736963fce1e9ee1ee6fd (patch) | |
tree | 9253de5bcb74101651ae5ee73652c27c42d809db /c++/src/H5PropList.cpp | |
parent | 3a92efb154f38f125ef118b548f62b2b6a40159d (diff) | |
download | hdf5-05eb7b7a848f94061f15736963fce1e9ee1ee6fd.zip hdf5-05eb7b7a848f94061f15736963fce1e9ee1ee6fd.tar.gz hdf5-05eb7b7a848f94061f15736963fce1e9ee1ee6fd.tar.bz2 |
[svn-r4542]
Purpose:
Changed to the new generic property list.
Description:
Took out H5P_FILE_CREATE from constructor definition.
Diffstat (limited to 'c++/src/H5PropList.cpp')
-rw-r--r-- | c++/src/H5PropList.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/c++/src/H5PropList.cpp b/c++/src/H5PropList.cpp index 3982288..42d0c29 100644 --- a/c++/src/H5PropList.cpp +++ b/c++/src/H5PropList.cpp @@ -31,9 +31,7 @@ Description: PropList::PropList( const hid_t plist_id ) : IdComponent(0) { if (H5I_GENPROP_CLS == H5Iget_type(plist_id) - || plist_id==H5P_FILE_CREATE || plist_id==H5P_FILE_ACCESS - || plist_id==H5P_DATASET_CREATE || plist_id==H5P_MOUNT) { // call C routine to create the new property id = H5Pcreate(plist_id); |