Skip to content

Commit

Permalink
fix intel compiler error
Browse files Browse the repository at this point in the history
  • Loading branch information
boulderdaze committed Jan 27, 2025
1 parent e0c3d21 commit 79b4737
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/tuvx/interface_grid_map.F90
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ function interal_get_grid(grid_map, c_grid_name, c_grid_name_length, &
grid_ptr = c_loc(f_grid)
class default
error_code = 1
deallocate(f_grid)
! deallocate(f_grid)
grid_ptr = c_null_ptr
end select

Expand Down
2 changes: 1 addition & 1 deletion src/tuvx/interface_profile_map.F90
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ function internal_get_profile(profile_map, c_profile_name, &
error_code = 0
class default
error_code = 1
deallocate(f_profile)
! deallocate(f_profile)
profile_ptr = c_null_ptr
end select

Expand Down
2 changes: 1 addition & 1 deletion src/tuvx/interface_radiator_map.F90
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ function internal_get_radiator(radiator_map, c_radiator_name, &
radiator_ptr = c_loc(f_radiator)
class default
error_code = 1
deallocate(f_radiator)
! deallocate(f_radiator)
radiator_ptr = c_null_ptr
end select
end if
Expand Down

0 comments on commit 79b4737

Please sign in to comment.