diff options
author | Scot Breitenfeld <brtnfld@hdfgroup.org> | 2012-09-05 00:59:46 (GMT) |
---|---|---|
committer | Scot Breitenfeld <brtnfld@hdfgroup.org> | 2012-09-05 00:59:46 (GMT) |
commit | 7740e853f4d39ce7a7a6462a3089aa86abbe5f17 (patch) | |
tree | 4f113dfb6a363789cfeb3c02e0dc93a26861239b /fortran/src/H5f90global.f90 | |
parent | 0aa8d4d88a7d90cbb841bafacf54d97bc1d7a3f7 (diff) | |
download | hdf5-7740e853f4d39ce7a7a6462a3089aa86abbe5f17.zip hdf5-7740e853f4d39ce7a7a6462a3089aa86abbe5f17.tar.gz hdf5-7740e853f4d39ce7a7a6462a3089aa86abbe5f17.tar.bz2 |
[svn-r22736] Fix for HDFFV-8132: Compile problem w/NAG Fortran due to too many continuation lines.
Tested: jam (gnu)
Diffstat (limited to 'fortran/src/H5f90global.f90')
-rw-r--r-- | fortran/src/H5f90global.f90 | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/fortran/src/H5f90global.f90 b/fortran/src/H5f90global.f90 index da7a736..a23ec34 100644 --- a/fortran/src/H5f90global.f90 +++ b/fortran/src/H5f90global.f90 @@ -105,8 +105,13 @@ MODULE H5GLOBAL H5T_STD_U8LE, & H5T_STD_U16BE, & H5T_STD_U16LE, & - H5T_STD_U32BE, & - H5T_STD_U32LE, & + H5T_STD_U32BE + +! NOTE: Splitting the line since the Fortran 95 standard limits the number of +! continuation lines to 39; the F03/F08 standard limits the number +! to 255 lines. + + INTEGER(HID_T) H5T_STD_U32LE, & H5T_STD_U64BE, & H5T_STD_U64LE, & H5T_STRING, & |