diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2016-09-21 19:53:17 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2016-10-14 17:02:01 (GMT) |
commit | 4fc6f27a5ebb209753b5df9f15993f45e907daff (patch) | |
tree | 18e3595c4d6f3b93fbcc50c20ef23497d8097fbe /c++/src/H5CommonFG.cpp | |
parent | 3ee36553b9aedb4e4d9cb31339e9c8a9f5ef3a92 (diff) | |
download | hdf5-4fc6f27a5ebb209753b5df9f15993f45e907daff.zip hdf5-4fc6f27a5ebb209753b5df9f15993f45e907daff.tar.gz hdf5-4fc6f27a5ebb209753b5df9f15993f45e907daff.tar.bz2 |
Purpose: Fix bug HDFFR-9920 cont.
Description:
Adding user's test revealed a flaw in the fix.
Moved CommonFG's functions in Group to H5Location, so that they
could be called by objects that can be used to specify a location
Also, rearranged many "#include" header files to resolve conflicts.
Platforms tested:
Linux/32 2.6 (jam)
Linux/64 (platypus)
Darwin (osx1010test)
Diffstat (limited to 'c++/src/H5CommonFG.cpp')
-rw-r--r-- | c++/src/H5CommonFG.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/c++/src/H5CommonFG.cpp b/c++/src/H5CommonFG.cpp index 0c18293..f79a048 100644 --- a/c++/src/H5CommonFG.cpp +++ b/c++/src/H5CommonFG.cpp @@ -19,13 +19,13 @@ #include "H5Exception.h" #include "H5IdComponent.h" #include "H5PropList.h" -#include "H5Location.h" -#include "H5Object.h" #include "H5FaccProp.h" #include "H5FcreatProp.h" #include "H5OcreatProp.h" #include "H5DxferProp.h" #include "H5DcreatProp.h" +#include "H5Location.h" +#include "H5Object.h" #include "H5CommonFG.h" #include "H5Group.h" #include "H5AbstractDs.h" @@ -73,4 +73,3 @@ CommonFG::~CommonFG() {} #ifndef H5_NO_NAMESPACE } #endif - |