Skip to content

Commit

Permalink
Merge pull request #21 from Space-Systems/manschub-patch-1-1
Browse files Browse the repository at this point in the history
Update slam_lifecycle_helper_class.f90
  • Loading branch information
manschub authored Jan 8, 2025
2 parents a60bc91 + f05ac74 commit dbcecc7
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/oop/slam_lifecycle_helper_class.f90
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ module slam_lifecycle_helper_class

private :: lifecycle_helper_create
public :: lifecycle_helper_create_from_create_function
public :: lifecycle_helper_create_if_non_existent_and_ensure_create_call
public :: lifecycle_helper_create_if_non_existent_and_ensure_final_call
public :: lc_helper_create_if_non_existent_and_ensure_create_call
public :: lc_helper_create_if_non_existent_and_ensure_final_call
public :: lifecycle_helper_finalize

contains
Expand Down Expand Up @@ -237,13 +237,13 @@ subroutine lifecycle_helper_ensure_create_call(this)
end subroutine lifecycle_helper_ensure_create_call


function lifecycle_helper_create_if_non_existent_and_ensure_create_call(existing_helper) result(this)
function lc_helper_create_if_non_existent_and_ensure_create_call(existing_helper) result(this)

character(len = *), parameter :: current_procedure_name = "lifecycle_helper_create_if_non_existent_and_ensure_create_call"
character(len = *), parameter :: current_procedure_name = "lc_helper_create_if_non_existent_and_ensure_create_call"
class(lifecycle_helper_type), pointer, intent(in) :: existing_helper
class(lifecycle_helper_type), pointer :: this
class(tehl_type), pointer :: t => null()
! character(len = *), parameter :: current_procedure_name= "lifecycle_helper_create_if_non_existent_and_ensure_create_call"
! character(len = *), parameter :: current_procedure_name= "lc_helper_create_if_non_existent_and_ensure_create_call"
! class(low_level_tehl), pointer :: low_level_t => null()

! low_level_t => low_level_tehl_create_default()
Expand Down Expand Up @@ -274,10 +274,10 @@ function lifecycle_helper_create_if_non_existent_and_ensure_create_call(existing

call t%exit_procedure(current_procedure_name)

end function lifecycle_helper_create_if_non_existent_and_ensure_create_call
end function lc_helper_create_if_non_existent_and_ensure_create_call


function lifecycle_helper_create_if_non_existent_and_ensure_final_call(existing_helper) result(this)
function lc_helper_create_if_non_existent_and_ensure_final_call(existing_helper) result(this)

class(lifecycle_helper_type), pointer, intent(in) :: existing_helper
class(lifecycle_helper_type), pointer :: this
Expand All @@ -291,6 +291,6 @@ function lifecycle_helper_create_if_non_existent_and_ensure_final_call(existing_

call this%ensure_final_call()

end function lifecycle_helper_create_if_non_existent_and_ensure_final_call
end function lc_helper_create_if_non_existent_and_ensure_final_call

end module slam_lifecycle_helper_class

0 comments on commit dbcecc7

Please sign in to comment.