finalise_container_layer Module Subroutine

module subroutine finalise_container_layer(this)

Finalise the container layer

Arguments

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

Source Code

  module subroutine finalise_container_layer(this)
    !! Finalise the container layer
    implicit none
    class(container_layer_type), intent(inout) :: this

    if(allocated(this%layer)) deallocate(this%layer)

  end subroutine finalise_container_layer