deallocate_linux_backlight Subroutine

private pure elemental subroutine deallocate_linux_backlight(this)

Type Bound

linux_backlight

Arguments

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

Contents


Source Code

   elemental pure subroutine deallocate_linux_backlight(this)
      class(linux_backlight), intent(inout) :: this

      if (allocated(this%debug))          deallocate(this%debug)
      if (allocated(this%path_backlight)) deallocate(this%path_backlight)
   end subroutine deallocate_linux_backlight