diff options
author | Scot Breitenfeld <brtnfld@hdfgroup.org> | 2008-08-27 14:54:19 (GMT) |
---|---|---|
committer | Scot Breitenfeld <brtnfld@hdfgroup.org> | 2008-08-27 14:54:19 (GMT) |
commit | c1bfa064ba501f5c4cb2c4749595a21b66e890ce (patch) | |
tree | dda32c0c4dd0135442ac1e8cbf21340d8d2010e5 | |
parent | 1ab76307800c1a1399e2ddccea2b8f698a0543ec (diff) | |
download | hdf5-c1bfa064ba501f5c4cb2c4749595a21b66e890ce.zip hdf5-c1bfa064ba501f5c4cb2c4749595a21b66e890ce.tar.gz hdf5-c1bfa064ba501f5c4cb2c4749595a21b66e890ce.tar.bz2 |
[svn-r15543] Description:
Put the DOUBLE PRECISION interfaces in a separate module and added a USE statement for the module. The interfaces are included/excluded depending on
the state of FORTRAN_DEFAULT_REALisDBLE_F which detects if the default REAL is DOUBLE PRECISION. This allows the library to be compiled with -r8 Fortran flag without the user needing to change the source code.
-rw-r--r-- | fortran/src/HDF5mpio.f90 | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fortran/src/HDF5mpio.f90 b/fortran/src/HDF5mpio.f90 index 59ec309..6febef8 100644 --- a/fortran/src/HDF5mpio.f90 +++ b/fortran/src/HDF5mpio.f90 @@ -29,5 +29,6 @@ USE H5FDMPIO USE H5R USE H5Z + USE H5_DBLE_INTERFACE USE H5LIB END MODULE HDF5 |