Skip to content

Commit

Permalink
Remove (:,:) after 2-d variable declariation
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavo-marques committed Aug 13, 2020
1 parent 608f4bf commit 6331da1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/tracer/MOM_lateral_boundary_diffusion.F90
Original file line number Diff line number Diff line change
Expand Up @@ -314,9 +314,9 @@ real function bulk_average(boundary, nk, deg, h, hBLT, phi, ppoly0_E, ppoly0_coe
real, dimension(nk) :: h !< Layer thicknesses [H ~> m or kg m-2]
real :: hBLT !< Depth of the boundary layer [H ~> m or kg m-2]
real, dimension(nk) :: phi !< Scalar quantity
real, dimension(nk,2) :: ppoly0_E(:,:) !< Edge value of polynomial
real, dimension(nk,deg+1) :: ppoly0_coefs(:,:) !< Coefficients of polynomial
integer :: method !< Remapping scheme to use
real, dimension(nk,2) :: ppoly0_E !< Edge value of polynomial
real, dimension(nk,deg+1) :: ppoly0_coefs!< Coefficients of polynomial
integer :: method !< Remapping scheme to use

integer :: k_top !< Index of the first layer within the boundary
real :: zeta_top !< Fraction of the layer encompassed by the bottom boundary layer
Expand Down

0 comments on commit 6331da1

Please sign in to comment.