Skip to content

Commit

Permalink
remove duplicated use statements
Browse files Browse the repository at this point in the history
Gfortran 9.3.0 is sensitive to duplicated use in the module-submodule
hierarchy and errors
  • Loading branch information
scivision committed Mar 17, 2020
1 parent 71b2a2f commit 0817786
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ if(NOT CMAKE_BUILD_TYPE)
endif()
project(h5fortran
LANGUAGES C Fortran
VERSION 2.8.2
VERSION 2.8.3
DESCRIPTION "thin, light, easy HDF5 Fortran interface"
HOMEPAGE_URL https://github.com/scivision/h5fortran)
enable_testing()
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
project('h5fortran', 'fortran',
meson_version : '>=0.52.0',
version : '2.8.2',
version : '2.8.3',
default_options : ['default_library=static', 'buildtype=release', 'warning_level=3'])

subdir('meson')
Expand Down
2 changes: 1 addition & 1 deletion src/read.f90
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
submodule (h5fortran) read
!! This submodule is for reading HDF5 via submodules
use hdf5, only : h5dopen_f, h5dclose_f, h5dget_create_plist_f, &
use hdf5, only : h5dget_create_plist_f, &
h5pget_layout_f, h5pget_chunk_f, H5D_CONTIGUOUS_F, H5D_CHUNKED_F
use H5LT, only : h5ltpath_valid_f

Expand Down
2 changes: 1 addition & 1 deletion src/write.f90
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
h5screate_f, H5S_SCALAR_F, &
h5dcreate_f, &
h5pset_chunk_f, h5pset_deflate_f, h5pset_shuffle_f, h5pset_fletcher32_f, h5pcreate_f, H5P_DATASET_CREATE_F, h5pclose_f, &
h5gopen_f, h5gclose_f
h5gopen_f

use H5LT, only: h5ltpath_valid_f, h5ltset_attribute_string_f, h5ltmake_dataset_string_f

Expand Down

0 comments on commit 0817786

Please sign in to comment.