get_git_hash Function

public function get_git_hash(length_in)

This function is just a call of get_git_hash_runtime_info and is provided for backwards compatibility.

Arguments

Type IntentOptional Attributes Name
integer, intent(in), optional :: length_in

Return Value character(len=40)


Contents

Source Code


Source Code

  function get_git_hash(length_in)
    implicit none
    integer, optional, intent(in) :: length_in
    character(len=40) :: get_git_hash

    get_git_hash = runtime_info%get_git_hash(length_in)

  end function get_git_hash