deallocate_compiler_id Subroutine

private pure elemental subroutine deallocate_compiler_id(this)

Type Bound

compiler_explorer

Arguments

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

Called by

proc~~deallocate_compiler_id~~CalledByGraph proc~deallocate_compiler_id forcompile::compiler_explorer%deallocate_compiler_id proc~deallocate_comnpiler_explorer forcompile::compiler_explorer%deallocate_comnpiler_explorer proc~deallocate_comnpiler_explorer->proc~deallocate_compiler_id

Contents


Source Code

   elemental pure subroutine deallocate_compiler_id(this)
      class(compiler_explorer), intent(inout) :: this
      if (allocated(this%compiler_id)) deallocate(this%compiler_id)
   end subroutine deallocate_compiler_id