@@ -1228,9 +1228,6 @@ subroutine json_matrix_info_by_path(json,p,path,is_matrix,found,&
12281228
12291229 type (json_value),pointer :: p_var
12301230 logical (LK) :: ok
1231- #if defined __GFORTRAN__
1232- character (kind= CK,len= :),allocatable :: p_name ! ! for getting the name
1233- #endif
12341231
12351232 call json% get(p,path,p_var,found)
12361233
@@ -1249,17 +1246,7 @@ subroutine json_matrix_info_by_path(json,p,path,is_matrix,found,&
12491246 else
12501247
12511248 ! get info about the variable:
1252- ! #if defined __GFORTRAN__
1253- ! ! [note: passing name directory to this routine seems
1254- ! ! to have a bug on older gfortran versions...
1255- ! ! ... it also seems to be failing with unicode build ...
1256- ! ! ... this doesn't seem to fix the problem ...
1257- ! call json%matrix_info(p_var,is_matrix,var_type,n_sets,set_size,p_name)
1258- ! if (present(name)) name = p_name
1259- ! if (allocated(p_name)) deallocate(p_name)
1260- ! #else
12611249 call json% matrix_info(p_var,is_matrix,var_type,n_sets,set_size,name)
1262- ! #endif
12631250 if (json% failed() .and. present (found)) then
12641251 found = .false.
12651252 call json% clear_exceptions()
0 commit comments