@@ -280,7 +280,7 @@ function info_build_target(t) result(s)
280
280
end if
281
281
! end type build_target_t
282
282
s = s // " )"
283
- end function
283
+ end function info_build_target
284
284
285
285
function info_build_target_short (t ) result(s)
286
286
! Prints a shortened representation of build_target_t
@@ -290,7 +290,7 @@ function info_build_target_short(t) result(s)
290
290
s = " build_target_t("
291
291
s = s // ' output_file="' // t% output_file // ' "'
292
292
s = s // " , ...)"
293
- end function
293
+ end function info_build_target_short
294
294
295
295
function info_package (p ) result(s)
296
296
! Returns representation of package_t
@@ -391,7 +391,7 @@ function info_srcfile(source) result(s)
391
391
s = s // " , digest=" // str(source% digest)
392
392
! end type srcfile_t
393
393
s = s // " )"
394
- end function
394
+ end function info_srcfile
395
395
396
396
function info_srcfile_short (source ) result(s)
397
397
! Prints a shortened version of srcfile_t
@@ -401,7 +401,7 @@ function info_srcfile_short(source) result(s)
401
401
s = " srcfile_t("
402
402
s = s // ' file_name="' // source% file_name // ' "'
403
403
s = s // " , ...)"
404
- end function
404
+ end function info_srcfile_short
405
405
406
406
function info_model (model ) result(s)
407
407
type (fpm_model_t), intent (in ) :: model
@@ -448,12 +448,12 @@ function info_model(model) result(s)
448
448
s = s // " , deps=dependency_tree_t(...)"
449
449
! end type fpm_model_t
450
450
s = s // " )"
451
- end function
451
+ end function info_model
452
452
453
453
subroutine show_model (model )
454
454
! Prints a human readable representation of the Model
455
455
type (fpm_model_t), intent (in ) :: model
456
456
print * , info_model(model)
457
- end subroutine
457
+ end subroutine show_model
458
458
459
459
end module fpm_model
0 commit comments