finalize_real_2D Subroutine

private pure subroutine finalize_real_2D(this)

@brief Deallocate the resource.

Type Bound

buffer_real_2D_t

Arguments

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

Contents

Source Code


Source Code

    pure subroutine finalize_real_2D (this)
        class(buffer_real_2D_t), intent(inout) :: this

        if (allocated(this%buf)) deallocate(this%buf)
    end subroutine finalize_real_2D