Skip to content

Commit ce5f071

Browse files
Fixed single-precision building
1 parent 6ddc795 commit ce5f071

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/simulation/m_ibm.fpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -953,8 +953,8 @@ contains
953953

954954
function cross_product(a, b) result(c)
955955
implicit none
956-
real(8), intent(in) :: a(3), b(3)
957-
real(8) :: c(3)
956+
real(wp), intent(in) :: a(3), b(3)
957+
real(wp) :: c(3)
958958

959959
c(1) = a(2)*b(3) - a(3)*b(2)
960960
c(2) = a(3)*b(1) - a(1)*b(3)

0 commit comments

Comments
 (0)