free Subroutine

private elemental subroutine free(self)

Free dynamic memory.

Arguments

TypeIntentOptionalAttributesName
class(section), intent(inout) :: self

Section data.


Contents

Source Code


Source Code

  elemental subroutine free(self)
  !< Free dynamic memory.
  class(section), intent(inout) :: self !< Section data.

  if (allocated(self%sname)) deallocate(self%sname)
  call self%free_options
  endsubroutine free