deallocate_comnpiler_explorer Subroutine

private pure elemental subroutine deallocate_comnpiler_explorer(this)

Type Bound

compiler_explorer

Arguments

Type IntentOptional Attributes Name
class(compiler_explorer), intent(inout) :: this

Calls

proc~~deallocate_comnpiler_explorer~~CallsGraph proc~deallocate_comnpiler_explorer forcompile::compiler_explorer%deallocate_comnpiler_explorer proc~deallocate_compiler_id forcompile::compiler_explorer%deallocate_compiler_id proc~deallocate_comnpiler_explorer->proc~deallocate_compiler_id proc~deallocate_lang forcompile::compiler_explorer%deallocate_lang proc~deallocate_comnpiler_explorer->proc~deallocate_lang proc~deallocate_source forcompile::compiler_explorer%deallocate_source proc~deallocate_comnpiler_explorer->proc~deallocate_source

Contents


Source Code

   elemental pure subroutine deallocate_comnpiler_explorer(this)
      class(compiler_explorer), intent(inout) :: this
      call this%deallocate_compiler_id()
      call this%deallocate_source()
      call this%deallocate_lang()
      call this%options%finalize()
   end subroutine deallocate_comnpiler_explorer