aboutsummaryrefslogtreecommitdiffstats
path: root/lib/entityx
diff options
context:
space:
mode:
authorAndy Belle-Isle <drumsetmonkey@gmail.com>2019-08-28 23:45:35 -0400
committerAndy Belle-Isle <drumsetmonkey@gmail.com>2019-08-28 23:45:35 -0400
commit41addc2d6b600e9cade63884de1c13dba662dc31 (patch)
treee7aa56cfc2f043cf99f25a337900bf17ab30e537 /lib/entityx
parent85fb2bff38b2ef6cb17e86c5f602ee09a365b117 (diff)
Can now create entities using Lua scripting
Diffstat (limited to 'lib/entityx')
-rw-r--r--lib/entityx/entityx/Entity.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/entityx/entityx/Entity.h b/lib/entityx/entityx/Entity.h
index f217372..dfa4062 100644
--- a/lib/entityx/entityx/Entity.h
+++ b/lib/entityx/entityx/Entity.h
@@ -437,7 +437,7 @@ class EntityManager : entityx::help::NonCopyable {
ViewIterator<Iterator, All>::next();
}
- void next_entity(Entity &entity) {}
+ void next_entity([[maybe_unused]]Entity &entity) {}
};
Iterator begin() { return Iterator(manager_, mask_, 0); }