Skip to content

Commit

Permalink
clang pipeline hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Mento committed Oct 15, 2023
1 parent 672d77c commit 7327170
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/git/Git.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ std::string Git::commitDate(unsigned years)
}


return std::format("{} {} {} {} {} {}", Date::weekdayAbbreviatedName(), monthAbbreviatedNames[std::stoi(month)-1], day, time, year, timeZoneString);
return std::format("{} {} {} {} {} {}", Date::weekdayAbbreviatedName(), monthAbbreviatedNames[size_t(std::stoi(month)-1)], day, time, year, timeZoneString);
}

std::string Git::commitEntry(std::optional<unsigned> dateYears, std::optional<unsigned> shaLength, Language language)
Expand Down

0 comments on commit 7327170

Please sign in to comment.