get_profile_cxx_flags Function

public function get_profile_cxx_flags(self) result(cxx_flags)

Get C++ flags

Type Bound

profile_config_t

Arguments

Type IntentOptional Attributes Name
class(profile_config_t), intent(in) :: self

Return Value character(len=:), allocatable


Source Code

      function get_profile_cxx_flags(self) result(cxx_flags)
        class(profile_config_t), intent(in) :: self
        character(len=:), allocatable :: cxx_flags
        cxx_flags = self%profile_feature%cxx_flags
      end function get_profile_cxx_flags