Enabled Fortran language features
Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
logical, | public | :: | implicit_external | = | .false. |
Use implicit external interface |
|
logical, | public | :: | implicit_typing | = | .false. |
Use default implicit typing |
|
character(len=:), | public, | allocatable | :: | source_form |
Form to use for all Fortran sources |
type :: fortran_features_t
!> Use default implicit typing
logical :: implicit_typing = .false.
!> Use implicit external interface
logical :: implicit_external = .false.
!> Form to use for all Fortran sources
character(:), allocatable :: source_form
end type fortran_features_t