Skip to content

Commit

Permalink
Fixes a compilation error occurring when using the intel 19.* compile…
Browse files Browse the repository at this point in the history
…r on windows (#1968)
  • Loading branch information
Manangka authored Aug 6, 2024
1 parent 97ed740 commit 8124ad4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Exchange/DisConnExchange.f90
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ function noder(this, model, cellid, iout)
! -- dummy
class(DisConnExchangeType) :: this !< instance of exchange object
class(NumericalModelType), pointer, intent(in) :: model
integer(I4B), dimension(:), pointer, intent(in) :: cellid
integer(I4B), dimension(:), intent(in) :: cellid
integer(I4B), intent(in) :: iout !< the output file unit
integer(I4B) :: noder, node
!
Expand Down Expand Up @@ -231,7 +231,7 @@ function cellstr(this, ndim, cellid, iout)
! -- dummy
class(DisConnExchangeType) :: this !< instance of exchange object
integer(I4B) :: ndim !< model DIS dimension
integer(I4B), dimension(:), pointer, intent(in) :: cellid
integer(I4B), dimension(:), intent(in) :: cellid
integer(I4B), intent(in) :: iout !< the output file unit
character(len=20) :: cellstr
character(len=*), parameter :: fmtndim1 = &
Expand Down
4 changes: 2 additions & 2 deletions src/Exchange/exg-swfgwf.f90
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ function noder(this, model, cellid, iout)
! -- dummy
class(SwfGwfExchangeType) :: this !< instance of exchange object
class(NumericalModelType), pointer, intent(in) :: model
integer(I4B), dimension(:), pointer, intent(in) :: cellid
integer(I4B), dimension(:), intent(in) :: cellid
integer(I4B), intent(in) :: iout !< the output file unit
integer(I4B) :: noder, node
!
Expand Down Expand Up @@ -591,7 +591,7 @@ function cellstr(this, model, cellid, iout)
! -- dummy
class(SwfGwfExchangeType) :: this !< instance of exchange object
class(NumericalModelType), pointer, intent(in) :: model
integer(I4B), dimension(:), pointer, intent(in) :: cellid
integer(I4B), dimension(:), intent(in) :: cellid
integer(I4B), intent(in) :: iout !< the output file unit
character(len=20) :: cellstr
character(len=*), parameter :: fmtndim1 = &
Expand Down

0 comments on commit 8124ad4

Please sign in to comment.