aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrank Stein <dr.frank.stain@gmail.com>2016-10-22 00:04:15 +0200
committerFrank Stein <dr.frank.stain@gmail.com>2016-10-22 00:04:15 +0200
commit8a53139f94bdea60099723528079a6a514764f3a (patch)
treec10f3bf35d7a91eaeaef47bbf33a3d4b14fabc9f
parente90226d0df9fac990a7bac1d625133363302960e (diff)
std::hash for const Entity implemented.
-rw-r--r--entityx/Entity.h6
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());
+ }
+};
}