feat_change_noop Subroutine

private subroutine feat_change_noop(self, changed)

No-op callback for detected file changes.

Type Bound

watch_feature_t

Arguments

Type IntentOptional Attributes Name
class(watch_feature_t), intent(inout) :: self
type(string_t), intent(in), allocatable :: changed(:)

Called by

proc~~feat_change_noop~~CalledByGraph proc~feat_change_noop watch_feature_t%feat_change_noop proc~on_change_detected_all feature_manager_t%on_change_detected_all proc~on_change_detected_all->proc~feat_change_noop proc~watcher_run watcher_t%watcher_run proc~watcher_run->proc~on_change_detected_all

Source Code

   subroutine feat_change_noop(self, changed)
      class(watch_feature_t), intent(inout) :: self
      type(string_t), allocatable, intent(in) :: changed(:)
      if (.false.) then
         if (allocated(changed)) continue
      end if
   end subroutine feat_change_noop