diff options
Diffstat (limited to 'mwe/ecs-homemade/inc')
| -rw-r--r-- | mwe/ecs-homemade/inc/ComponentManager.hpp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/mwe/ecs-homemade/inc/ComponentManager.hpp b/mwe/ecs-homemade/inc/ComponentManager.hpp index af9c3a1..7d26df4 100644 --- a/mwe/ecs-homemade/inc/ComponentManager.hpp +++ b/mwe/ecs-homemade/inc/ComponentManager.hpp @@ -54,8 +54,8 @@ void ComponentManager::DeleteComponents() {  }  template <typename T> -std::vector<std::reference_wrapper<T>> -ComponentManager::GetComponentsByID(std::uint32_t id) const { +std::vector<std::reference_wrapper<T>> ComponentManager::GetComponentsByID(std::uint32_t id +) const {  	//Determine the type of T (this is used as the key of the unordered_map<>)  	std::type_index type = typeid(T);  |