destroy_ga_label Subroutine

public subroutine destroy_ga_label(me)

Arguments

Type IntentOptional Attributes Name
type(grw_labelarray_type), intent(inout) :: me

Called by

proc~~destroy_ga_label~~CalledByGraph proc~destroy_ga_label destroy_ga_label interface~destroy~16 destroy interface~destroy~16->proc~destroy_ga_label

Contents

Source Code


Source Code

  subroutine destroy_ga_label(me)
    type(grw_labelarray_type), intent(inout) :: me !< dynamic array to destroy

    me%containersize = 0
    me%nvals = 0
    if( allocated( me%val ) ) deallocate(me%val)

  end subroutine destroy_ga_label