aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Guzman <daniel.guzman85@gmail.com>2016-04-10 22:43:35 +0200
committerDaniel Guzman <daniel.guzman85@gmail.com>2016-04-10 22:43:35 +0200
commit8f030a62a52c06896bd6c643a1e295267f2dd097 (patch)
tree88cdb47430d7fa1f344e81ce546f0d0f8db5276e
parent76828e68aa9b30c4c6afac2fbbac1964d11226b6 (diff)
Minor fix due to copy-paste of entity() function
-rw-r--r--entityx/Entity.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/entityx/Entity.h b/entityx/Entity.h
index 2382c11..f6fe020 100644
--- a/entityx/Entity.h
+++ b/entityx/Entity.h
@@ -1044,7 +1044,7 @@ inline void ComponentHandle<C, EM>::remove() {
template <typename C, typename EM>
inline Entity ComponentHandle<C, EM>::entity() {
assert(valid());
- return manager_->template get(id_);
+ return manager_->get(id_);
}