Finalizes object and frees allocated memory.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(parser_obj), | intent(inout) | :: | this |
Parser object |
pure subroutine parser_obj_final(this) !> Finalizes object and frees allocated memory. implicit none class(parser_obj), intent(inout) :: this !! Parser object if (allocated(this%entries)) deallocate(this%entries) return end subroutine parser_obj_final