Initial refactor of id_t to a separate class
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user