Skip to content

Commit

Permalink
comment out write - produces linking errors in some machines
Browse files Browse the repository at this point in the history
  • Loading branch information
filiatra committed Jan 4, 2025
1 parent a4a744f commit 47c0811
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Fgismo.F90
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ subroutine f_gsvector_print(f_vec)
type(t_gsvector) :: f_vec

call gsVector_print(f_vec%c_vec)
write(*,*) ! flush stdout(?)
!-- write(*,*) ! flush stdout(?)
end subroutine f_gsvector_print

!------------------------------------------------------------------------------------------------------------
Expand Down Expand Up @@ -331,7 +331,7 @@ subroutine f_gsvectorint_print(f_vec)
type(t_gsvectorint) :: f_vec

call gsVectorInt_print(f_vec%c_vec)
write(*,*) ! flush stdout(?)
!-- write(*,*) ! flush stdout(?)
end subroutine f_gsvectorint_print

!------------------------------------------------------------------------------------------------------------
Expand Down Expand Up @@ -485,7 +485,7 @@ subroutine f_gsmatrix_print(f_mat)
type(t_gsmatrix) :: f_mat

call gsMatrix_print(f_mat%c_mat)
write(*,*) ! flush stdout(?)
!-- write(*,*) ! flush stdout(?)
end subroutine f_gsmatrix_print

!------------------------------------------------------------------------------------------------------------
Expand Down

0 comments on commit 47c0811

Please sign in to comment.