diff options
author | Frank Stein <dr.frank.stain@gmail.com> | 2016-10-22 00:04:15 +0200 |
---|---|---|
committer | Frank Stein <dr.frank.stain@gmail.com> | 2016-10-22 00:04:15 +0200 |
commit | 8a53139f94bdea60099723528079a6a514764f3a (patch) | |
tree | c10f3bf35d7a91eaeaef47bbf33a3d4b14fabc9f | |
parent | e90226d0df9fac990a7bac1d625133363302960e (diff) |
std::hash for const Entity implemented.
-rw-r--r-- | entityx/Entity.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/entityx/Entity.h b/entityx/Entity.h index 9fcf676..e4a3871 100644 --- a/entityx/Entity.h +++ b/entityx/Entity.h @@ -1079,5 +1079,11 @@ template <> struct hash<entityx::Entity> { return static_cast<std::size_t>(entity.id().index() ^ entity.id().version()); } }; + +template <> struct hash<const entityx::Entity> { + std::size_t operator () (const entityx::Entity &entity) const { + return static_cast<std::size_t>(entity.id().index() ^ entity.id().version()); + } +}; } |