Return a compiler name string
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(compiler_t), | intent(in) | :: | self |
Instance of the compiler object |
Representation as string
pure function compiler_name(self) result(name) !> Instance of the compiler object class(compiler_t), intent(in) :: self !> Representation as string character(len=:), allocatable :: name name = compiler_id_name(self%id) end function compiler_name