fortran_features_t Derived Type

type, public :: fortran_features_t

Enabled Fortran language features


Contents

Source Code


Components

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


Source Code

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