FSFW Update #28

Merged
jgerhards merged 782 commits from fsfw_update into develop 2023-05-28 23:43:22 +02:00
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());
}
};