Skip to content

Commit f05ac74

Browse files
authored
Update slam_lifecycle_helper_class.f90
lifecycle_helper_create_if_non_existent_and_ensure_create_call and lifecycle_helper_create_if_non_existent_and_ensure_final_call are too long for the intel compiler so I shortened them to lc_....
1 parent a60bc91 commit f05ac74

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/oop/slam_lifecycle_helper_class.f90

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ module slam_lifecycle_helper_class
4949

5050
private :: lifecycle_helper_create
5151
public :: lifecycle_helper_create_from_create_function
52-
public :: lifecycle_helper_create_if_non_existent_and_ensure_create_call
53-
public :: lifecycle_helper_create_if_non_existent_and_ensure_final_call
52+
public :: lc_helper_create_if_non_existent_and_ensure_create_call
53+
public :: lc_helper_create_if_non_existent_and_ensure_final_call
5454
public :: lifecycle_helper_finalize
5555

5656
contains
@@ -237,13 +237,13 @@ subroutine lifecycle_helper_ensure_create_call(this)
237237
end subroutine lifecycle_helper_ensure_create_call
238238

239239

240-
function lifecycle_helper_create_if_non_existent_and_ensure_create_call(existing_helper) result(this)
240+
function lc_helper_create_if_non_existent_and_ensure_create_call(existing_helper) result(this)
241241

242-
character(len = *), parameter :: current_procedure_name = "lifecycle_helper_create_if_non_existent_and_ensure_create_call"
242+
character(len = *), parameter :: current_procedure_name = "lc_helper_create_if_non_existent_and_ensure_create_call"
243243
class(lifecycle_helper_type), pointer, intent(in) :: existing_helper
244244
class(lifecycle_helper_type), pointer :: this
245245
class(tehl_type), pointer :: t => null()
246-
! character(len = *), parameter :: current_procedure_name= "lifecycle_helper_create_if_non_existent_and_ensure_create_call"
246+
! character(len = *), parameter :: current_procedure_name= "lc_helper_create_if_non_existent_and_ensure_create_call"
247247
! class(low_level_tehl), pointer :: low_level_t => null()
248248

249249
! low_level_t => low_level_tehl_create_default()
@@ -274,10 +274,10 @@ function lifecycle_helper_create_if_non_existent_and_ensure_create_call(existing
274274

275275
call t%exit_procedure(current_procedure_name)
276276

277-
end function lifecycle_helper_create_if_non_existent_and_ensure_create_call
277+
end function lc_helper_create_if_non_existent_and_ensure_create_call
278278

279279

280-
function lifecycle_helper_create_if_non_existent_and_ensure_final_call(existing_helper) result(this)
280+
function lc_helper_create_if_non_existent_and_ensure_final_call(existing_helper) result(this)
281281

282282
class(lifecycle_helper_type), pointer, intent(in) :: existing_helper
283283
class(lifecycle_helper_type), pointer :: this
@@ -291,6 +291,6 @@ function lifecycle_helper_create_if_non_existent_and_ensure_final_call(existing_
291291

292292
call this%ensure_final_call()
293293

294-
end function lifecycle_helper_create_if_non_existent_and_ensure_final_call
294+
end function lc_helper_create_if_non_existent_and_ensure_final_call
295295

296296
end module slam_lifecycle_helper_class

0 commit comments

Comments
 (0)