Skip to content

Commit ecd23ed

Browse files
committed
ifx issue test: rename toml_table in fpm_settings
1 parent 53a4486 commit ecd23ed

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/.fpm_settings.f90.swp

16 KB
Binary file not shown.

src/fpm_settings.f90

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module fpm_settings
33
use fpm_filesystem, only: exists, join_path, get_local_prefix, is_absolute_path, mkdir
44
use fpm_environment, only: os_is_unix
55
use fpm_error, only: error_t, fatal_error
6-
use fpm_toml, only: toml_table, toml_error, toml_stat, get_value, toml_load, check_keys
6+
use fpm_toml, only: ttable=>toml_table, toml_error, toml_stat, get_value, toml_load, check_keys
77
use fpm_os, only: get_current_directory, change_directory, get_absolute_path, convert_to_absolute_path
88

99
implicit none
@@ -47,11 +47,11 @@ subroutine get_global_settings(global_settings, error)
4747
!> Error reading config file.
4848
type(error_t), allocatable, intent(out) :: error
4949
!> TOML table to be filled with global config settings.
50-
type(toml_table), allocatable :: table
50+
type(ttable), allocatable :: table
5151
!> Error parsing to TOML table.
5252
type(toml_error), allocatable :: parse_error
5353

54-
type(toml_table), pointer :: registry_table
54+
type(ttable), pointer :: registry_table
5555
integer :: stat
5656

5757
! Use custom path to the config file if it was specified.
@@ -122,7 +122,7 @@ subroutine use_default_registry_settings(global_settings)
122122
!> Read registry settings from the global config file.
123123
subroutine get_registry_settings(table, global_settings, error)
124124
!> The [registry] subtable from the global config file.
125-
type(toml_table), target, intent(inout) :: table
125+
type(ttable), target, intent(inout) :: table
126126
!> The global settings which can be filled with the registry settings.
127127
type(fpm_global_settings), intent(inout) :: global_settings
128128
!> Error handling.

0 commit comments

Comments
 (0)