finalize Subroutine

private elemental subroutine finalize(self)

Free dynamic memory when finalizing.

Arguments

Type IntentOptional Attributes Name
type(command_line_arguments_group), intent(inout) :: self

CLAsG data.


Source Code

  elemental subroutine finalize(self)
  !< Free dynamic memory when finalizing.
  type(command_line_arguments_group), intent(inout) :: self !< CLAsG data.

  call self%free
  endsubroutine finalize