Skip to content

Commit

Permalink
Merge branch 'main' into feature/jstassi/#278-GMAO_etc
Browse files Browse the repository at this point in the history
  • Loading branch information
sdrabenh authored Sep 8, 2022
2 parents 90c5437 + 09629d8 commit dcea4c7
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 @@ -25,6 +25,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 dcea4c7

Please sign in to comment.