diff options
author | MuQun Yang <ymuqun@hdfgroup.org> | 2006-11-17 15:14:20 (GMT) |
---|---|---|
committer | MuQun Yang <ymuqun@hdfgroup.org> | 2006-11-17 15:14:20 (GMT) |
commit | d3206adb2efdc50d998352ea7abcf225eadb64d5 (patch) | |
tree | fa50d5df98980bbcbbb0011a3b36fee0728e8577 | |
parent | 7cc88ba656890266f0b5c54180db9f3734f83f7b (diff) | |
download | hdf5-d3206adb2efdc50d998352ea7abcf225eadb64d5.zip hdf5-d3206adb2efdc50d998352ea7abcf225eadb64d5.tar.gz hdf5-d3206adb2efdc50d998352ea7abcf225eadb64d5.tar.bz2 |
[svn-r12931] H5L_link is called inside H5O.c but the header file that declared this function is not included in this file. Windows compiler issued a bad warning that"H5L_link" is not defined but is called.
So add header file "H5Lprivate.h" in H5O.c. Hopefully this is the right way.
Tested on windows and tested the compiling on Linux.
H5L_link is called inside H5O.c but the header file that declared this function is not included in this file. Windows compiler issued a bad warning that"H5L_link" is not defined but is called.
So add header file "H5Lprivate.h" in H5O.c. Hopefully this is the right way.
Tested on windows and tested the compiling on Linux.
H5L_link is called inside H5O.c but the header file that declared this function is not included in this file. Windows compiler issued a bad warning that"H5L_link" is not defined but is called.
So add header file "H5Lprivate.h" in H5O.c. Hopefully this is the right way.
Tested on windows and tested the compiling on Linux.
-rw-r--r-- | src/H5O.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -38,6 +38,7 @@ #include "H5Fpkg.h" /* File access */ #include "H5FLprivate.h" /* Free lists */ #include "H5Iprivate.h" /* IDs */ +#include "H5Lprivate.h" /* Links */ #include "H5MFprivate.h" /* File memory management */ #include "H5MMprivate.h" /* Memory management */ #include "H5Opkg.h" /* Object headers */ |