New UnsignedByte Field class #660

Merged
mohr merged 12 commits from mueller/new-object-id-class into development 2022-08-15 15:22:31 +02:00
1 changed files with 1 additions and 1 deletions
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());
}
};