Update FSFW from upstream #71

Closed
muellerr wants to merge 1112 commits from development into eive/develop
Showing only changes of commit 96f092ef75 - Show all commits

View File

@ -50,7 +50,7 @@ struct std::hash<ObjectId>
{
std::size_t operator()(ObjectId const& s) const noexcept
{
return std::hash<uint32_t>{}(s.id());
return std::hash<object_id_t>{}(s.id());
}
};