Skip to content

Commit 0817786

Browse files
committed
remove duplicated use statements
Gfortran 9.3.0 is sensitive to duplicated use in the module-submodule hierarchy and errors
1 parent 71b2a2f commit 0817786

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ if(NOT CMAKE_BUILD_TYPE)
44
endif()
55
project(h5fortran
66
LANGUAGES C Fortran
7-
VERSION 2.8.2
7+
VERSION 2.8.3
88
DESCRIPTION "thin, light, easy HDF5 Fortran interface"
99
HOMEPAGE_URL https://github.com/scivision/h5fortran)
1010
enable_testing()

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
project('h5fortran', 'fortran',
22
meson_version : '>=0.52.0',
3-
version : '2.8.2',
3+
version : '2.8.3',
44
default_options : ['default_library=static', 'buildtype=release', 'warning_level=3'])
55

66
subdir('meson')

src/read.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
submodule (h5fortran) read
22
!! This submodule is for reading HDF5 via submodules
3-
use hdf5, only : h5dopen_f, h5dclose_f, h5dget_create_plist_f, &
3+
use hdf5, only : h5dget_create_plist_f, &
44
h5pget_layout_f, h5pget_chunk_f, H5D_CONTIGUOUS_F, H5D_CHUNKED_F
55
use H5LT, only : h5ltpath_valid_f
66

src/write.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
h5screate_f, H5S_SCALAR_F, &
55
h5dcreate_f, &
66
h5pset_chunk_f, h5pset_deflate_f, h5pset_shuffle_f, h5pset_fletcher32_f, h5pcreate_f, H5P_DATASET_CREATE_F, h5pclose_f, &
7-
h5gopen_f, h5gclose_f
7+
h5gopen_f
88

99
use H5LT, only: h5ltpath_valid_f, h5ltset_attribute_string_f, h5ltmake_dataset_string_f
1010

0 commit comments

Comments
 (0)