Initial refactor of id_t to a separate class

This commit is contained in:
Bartek Kryza
2024-06-04 00:03:26 +02:00
parent e21c2d2b14
commit cf79b3184c
37 changed files with 374 additions and 248 deletions

View File

@@ -187,7 +187,7 @@ struct hash<std::reference_wrapper<clanguml::class_diagram::model::class_>> {
{
using clanguml::common::id_t;
return std::hash<id_t>{}(key.get().id());
return std::hash<uint64_t>{}(key.get().id().value());
}
};
} // namespace std