Skip to content

Commit

Permalink
Specified argument intent in MOM_string_functions.F90
Browse files Browse the repository at this point in the history
  Specified the intent for a number of subroutine arguments in
MOM_string_functions.F90 where this had been omitted.  All answers are bitwise
identical.
  • Loading branch information
Hallberg-NOAA committed May 3, 2018
1 parent e28065b commit 86c0227
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/framework/MOM_string_functions.F90
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,9 @@ function left_reals(r,sep)
! Arguments
character(len=1320) :: left_reals
real, intent(in) :: r(:)
character(len=*), optional :: sep
character(len=*), optional, intent(in) :: sep !< The separator between
!! successive values, by default it is ', '.

! Local variables
integer :: j, n, b, ns
logical :: doWrite
Expand Down

0 comments on commit 86c0227

Please sign in to comment.