summaryrefslogtreecommitdiffstats
path: root/fortran
diff options
context:
space:
mode:
authorH. Joe Lee <hyoklee@hdfgroup.org>2023-04-28 16:08:59 (GMT)
committerGitHub <noreply@github.com>2023-04-28 16:08:59 (GMT)
commit443ef49ab6dc6deb67f4cf7fe31d9cc40a64fa35 (patch)
tree34dee45cf6e52b49641a03a7f04ab04992353ce1 /fortran
parent2b7afc272705ee54f50f6f4b59c7e445c72a21e2 (diff)
downloadhdf5-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')
-rw-r--r--fortran/test/tH5T_F03.F902
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