Skip to content

Commit

Permalink
1_dp to 1.0_dp (no consequence here but better practice)
Browse files Browse the repository at this point in the history
  • Loading branch information
pmocz committed Sep 6, 2024
1 parent a6a2f6e commit cc29f7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion math/private/math_pown.f90
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ elemental function powm1_ (x) result (powm1_x)
real(dp), intent(in) :: x
real(dp) :: powm1_x

powm1_x = 1_dp / x
powm1_x = 1.0_dp / x

end function powm1_

Expand Down

0 comments on commit cc29f7d

Please sign in to comment.