deallocate_tools Subroutine

private pure elemental subroutine deallocate_tools(this)

Type Bound

options

Arguments

Type IntentOptional Attributes Name
class(options), intent(inout) :: this

Called by

proc~~deallocate_tools~~CalledByGraph proc~deallocate_tools forcompile::options%deallocate_tools proc~deallocate_options forcompile::options%deallocate_options proc~deallocate_options->proc~deallocate_tools

Contents

Source Code


Source Code

   elemental pure subroutine deallocate_tools(this)
      class(options), intent(inout) :: this
      if (allocated(this%tools)) deallocate(this%tools)
   end subroutine deallocate_tools