Skip to content

Commit

Permalink
Update netcdf_io.F90
Browse files Browse the repository at this point in the history
  • Loading branch information
mlee03 authored Aug 3, 2023
1 parent a484817 commit ba22621
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fms2_io/netcdf_io.F90
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ module netcdf_io_mod
module procedure is_valid_r4
end interface is_valid

!> @brief
!> @brief "=" operator for FmsNetcdfFile_t type
interface assignment(=)
module procedure FmsNetcdfFile_t_eq
end interface assignment(=)
Expand Down Expand Up @@ -2367,8 +2367,8 @@ end subroutine flush_file
!> @brief "=" operator for FmsNetcdfFile_t type
subroutine FmsNetcdfFile_t_eq(FmsNetcdfFile_out, FmsNetcdfFile_in)

type(FmsNetcdfFile_t), intent(inout) :: FmsNetcdfFile_out
type(FmsNetcdfFile_t), intent(in) :: FmsNetcdfFile_in
type(FmsNetcdfFile_t), intent(out) :: FmsNetcdfFile_out
type(FmsNetcdfFile_t), intent(in) :: FmsNetcdfFile_in

FmsNetcdfFile_out%path = FmsNetcdfFile_in%path
FmsNetcdfFile_out%is_readonly = FmsNetcdfFile_in%is_readonly
Expand Down

0 comments on commit ba22621

Please sign in to comment.