aboutsummaryrefslogtreecommitdiffstats
path: root/entityx/Entity.h
diff options
context:
space:
mode:
Diffstat (limited to 'entityx/Entity.h')
-rw-r--r--entityx/Entity.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/entityx/Entity.h b/entityx/Entity.h
index e7d2e8d..6b9737e 100644
--- a/entityx/Entity.h
+++ b/entityx/Entity.h
@@ -467,7 +467,7 @@ class EntityManager : entityx::help::NonCopyable {
void each(typename identity<std::function<void(Entity entity, Components&...)>>::type f, bool dead = false) {
static std::mutex locked;
locked.lock();
- for (auto it : *this) {
+ for (Entity it : *this) {
if (dead || !it.has_component<Killed>())
f(it, *(it.template component<Components>().get())...);
}