Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
fluidnumerics-joe committed Jun 15, 2024
1 parent cf6977c commit 65be66e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/FEQParse.F90
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ subroutine Finalize_EquationParser(parser)
if(allocated(parser%equation)) deallocate(parser%equation)
if(allocated(parser%variableName)) deallocate(parser%variableName)
if(allocated(parser%indepVars)) then
do i=1,parser%nIndepVars
do i = 1,parser%nIndepVars
deallocate(parser%indepVars(i)%value)
enddo
deallocate(parser%indepVars)
Expand Down
4 changes: 2 additions & 2 deletions src/FEQParse_FloatStacks.F90
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ subroutine Construct_r1fp64Stack(stack,N,mold)
stack%top_index = 0

endsubroutine Construct_r1fp64Stack

subroutine Finalize_r1fp64Stack(stack)
type(r1fp64Stack),intent(inout) :: stack

Expand Down Expand Up @@ -374,7 +374,7 @@ subroutine Construct_r2fp64Stack(stack,N,mold)
stack%top_index = 0

endsubroutine Construct_r2fp64Stack

subroutine Finalize_r2fp64Stack(stack)
type(r2fp64Stack),intent(inout) :: stack

Expand Down

0 comments on commit 65be66e

Please sign in to comment.