diff options
author | max-001 <maxsmits21@kpnmail.nl> | 2024-11-07 09:43:17 +0100 |
---|---|---|
committer | max-001 <maxsmits21@kpnmail.nl> | 2024-11-07 09:43:17 +0100 |
commit | e0db2fa06232e9f081df6dac2e360195becae17c (patch) | |
tree | 7b2e39c181ee4b4bc5dd55a3f9be7bcde9535e64 /src/crepe/ComponentManager.cpp | |
parent | bc8f9c684cddbae8f185687b0f716f70d517858e (diff) |
Added this->
Diffstat (limited to 'src/crepe/ComponentManager.cpp')
-rw-r--r-- | src/crepe/ComponentManager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crepe/ComponentManager.cpp b/src/crepe/ComponentManager.cpp index 55bd82f..01bc8d7 100644 --- a/src/crepe/ComponentManager.cpp +++ b/src/crepe/ComponentManager.cpp @@ -11,7 +11,7 @@ ComponentManager & ComponentManager::get_instance() { void ComponentManager::delete_all_components_of_id(uint32_t id) { // Loop through all the types (in the unordered_map<>) - for (auto & [type, componentArray] : components) { + for (auto & [type, componentArray] : this->components) { // Make sure that the id (that we are looking for) is within the boundaries of the vector<> if (id < componentArray.size()) { // Clear the components at this specific id |