excessive / excessive/pecs

Runtime exception

Open
#1 0 comments 0 reactions 0 assignees View on GitHub
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.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.