Skip to content

Commit f6109b8

Browse files
committed
<= 10
1 parent 07edf3c commit f6109b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/csv_module.F90

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -520,7 +520,7 @@ subroutine add_vector(me,val,int_fmt,real_fmt,trim_str)
520520

521521
do i=1,size(val)
522522

523-
#if ( defined __GFORTRAN__ ) && ( __GNUC__ <= 9 )
523+
#if ( defined __GFORTRAN__ ) && ( __GNUC__ <= 10 )
524524
! This is a stupid workaround for gfortran bugs (tested with 7.2.0)
525525
select type (val)
526526
type is (character(len=*))
@@ -966,7 +966,7 @@ subroutine get_column(me,icol,r,status_ok)
966966

967967
do i=1,me%n_rows ! row loop
968968

969-
#if ( defined __GFORTRAN__ ) && ( __GNUC__ <= 9 )
969+
#if ( defined __GFORTRAN__ ) && ( __GNUC__ <= 10 )
970970
! the following is a workaround for gfortran bugs:
971971
select type (r)
972972
type is (character(len=*))

0 commit comments

Comments
 (0)