diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2001-06-04 21:28:06 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2001-06-04 21:28:06 (GMT) |
commit | 5fcefe52a26e265ab426ecc692bcf1e5cf8adb3f (patch) | |
tree | 179ea08774d1e5a0ba7550ef29d9e94f2ed7798d /fortran/src/H5Dff.f90 | |
parent | 53f03a4c721f1733141645ac4c072f12b04706ee (diff) | |
download | hdf5-5fcefe52a26e265ab426ecc692bcf1e5cf8adb3f.zip hdf5-5fcefe52a26e265ab426ecc692bcf1e5cf8adb3f.tar.gz hdf5-5fcefe52a26e265ab426ecc692bcf1e5cf8adb3f.tar.bz2 |
[svn-r3958]
Purpose:
HPUX 11.00 port
Description:
Redundant USE statements triggered a bug in the HP F90 compiler.
Solution:
Source code was rearranged to avoid redundancy: definitions of the
object and dataset region reference types were moved from H5Rff.f90
to H5f90global.f90; "USE H5R" statement was removed from H5Rff.f90.
Now H5Rff.f90 uses "USE H5GLOBAL" statement only as the rest of
the modules.
Platforms tested:
HPUX 11.00 (kelgia), Solaris 2.7 (arabica)
Diffstat (limited to 'fortran/src/H5Dff.f90')
-rw-r--r-- | fortran/src/H5Dff.f90 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fortran/src/H5Dff.f90 b/fortran/src/H5Dff.f90 index b256705..515ab5c 100644 --- a/fortran/src/H5Dff.f90 +++ b/fortran/src/H5Dff.f90 @@ -3,7 +3,7 @@ ! MODULE H5D USE H5GLOBAL - USE H5R +! USE H5R INTERFACE h5dwrite_f |