Runtime exception
Open
- Dominant language
- C++
- Stars
- 18
- Forks
- 0
- PR merge metrics
- No merged PRs in 30d
Description
During the execution of the tests (the one with 2000000 entities) in MSVC 2015, errors occurred in function get_entity(), changing the order of operations, it was solved:
From :
this->rm_queue_entities.erase(it);
auto &e = this->entities[*it];
To :
auto &e = this->entities[*it];
this->rm_queue_entities.erase(it);
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.