diff options
author | H. Joe Lee <hyoklee@hdfgroup.org> | 2023-04-28 16:08:59 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-28 16:08:59 (GMT) |
commit | 443ef49ab6dc6deb67f4cf7fe31d9cc40a64fa35 (patch) | |
tree | 34dee45cf6e52b49641a03a7f04ab04992353ce1 /fortran/test | |
parent | 2b7afc272705ee54f50f6f4b59c7e445c72a21e2 (diff) | |
download | hdf5-443ef49ab6dc6deb67f4cf7fe31d9cc40a64fa35.zip hdf5-443ef49ab6dc6deb67f4cf7fe31d9cc40a64fa35.tar.gz hdf5-443ef49ab6dc6deb67f4cf7fe31d9cc40a64fa35.tar.bz2 |
Remove unused variable warning (#2828)
Polaris FORTRAN compiler reported the unused variable warning.
Diffstat (limited to 'fortran/test')
-rw-r--r-- | fortran/test/tH5T_F03.F90 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fortran/test/tH5T_F03.F90 b/fortran/test/tH5T_F03.F90 index 2256b50..86e49b6 100644 --- a/fortran/test/tH5T_F03.F90 +++ b/fortran/test/tH5T_F03.F90 @@ -1374,7 +1374,7 @@ SUBROUTINE t_enum(total_error) INTEGER(SIZE_T) , PARAMETER :: NAME_BUF_SIZE = 16 ! Enumerated type - INTEGER, PARAMETER :: SOLID=0, LIQUID=1, GAS=2, PLASMA=3 + INTEGER, PARAMETER :: SOLID=0, PLASMA=3 INTEGER(HID_T) :: file, filetype, memtype, space, dset ! Handles |