deallocate_lang Subroutine

private pure elemental subroutine deallocate_lang(this)

Type Bound

compiler_explorer

Arguments

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

Called by

proc~~deallocate_lang~~CalledByGraph proc~deallocate_lang forcompile::compiler_explorer%deallocate_lang proc~deallocate_comnpiler_explorer forcompile::compiler_explorer%deallocate_comnpiler_explorer proc~deallocate_comnpiler_explorer->proc~deallocate_lang

Contents

Source Code


Source Code

   elemental pure subroutine deallocate_lang(this)
      class(compiler_explorer), intent(inout) :: this
      if (allocated(this%lang)) deallocate(this%lang)
   end subroutine deallocate_lang