Skip to content

Commit

Permalink
Merge pull request #280 from GEOS-ESM/bugfix/mathomp4/ncdiag-fix-for-…
Browse files Browse the repository at this point in the history
…intel2022

Fix in ncdiag for Intel 2022.1
  • Loading branch information
sdrabenh authored Sep 1, 2022
2 parents a5695a4 + 0547985 commit 09629d8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

- Add `target` attribute to variables in `nc_diag_cat`. Needed to build with Intel 2022.1

### Removed

## [1.5.6] - 2022-07-22
Expand Down
4 changes: 2 additions & 2 deletions GMAO_ncdiag/nc_diag_cat/netcdf_unlimdims.F90
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ integer (C_INT) function nc_inq_unlimdims(ncid, nunlimdimsp, unlimdimidsp) bind(
! pf = polyfill
integer(c_int) function pf_nf90_inq_unlimdims(ncid, num_unlim_dims, unlim_dims)
integer(c_int), intent(in) :: ncid
integer(c_int), intent(inout) :: num_unlim_dims
integer(c_int), intent(out), optional :: unlim_dims(:)
integer(c_int), target, intent(inout) :: num_unlim_dims
integer(c_int), target, intent(out), optional :: unlim_dims(:)

integer :: i

Expand Down

0 comments on commit 09629d8

Please sign in to comment.