finalize Subroutine

private elemental subroutine finalize(tag)

Free dynamic memory when finalizing.

Arguments

Type IntentOptional Attributes Name
type(xml_tag), intent(inout) :: tag

XML tag.


Source Code

   elemental subroutine finalize(tag)
   !< Free dynamic memory when finalizing.
   type(xml_tag), intent(inout) :: tag !< XML tag.

   call tag%free
   endsubroutine finalize