deallocate_options Subroutine

private pure elemental subroutine deallocate_options(this)

Type Bound

options

Arguments

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

Calls

proc~~deallocate_options~~CallsGraph proc~deallocate_options forcompile::options%deallocate_options proc~deallocate_libraries forcompile::options%deallocate_libraries proc~deallocate_options->proc~deallocate_libraries proc~deallocate_tools forcompile::options%deallocate_tools proc~deallocate_options->proc~deallocate_tools proc~deallocate_userarguments forcompile::options%deallocate_userArguments proc~deallocate_options->proc~deallocate_userarguments

Contents

Source Code


Source Code

   elemental pure subroutine deallocate_options(this)
      class(options), intent(inout) :: this
      call this%deallocate_userArguments()
      call this%deallocate_tools()
      call this%deallocate_libraries()
   end subroutine deallocate_options