Skip to content

Runtime exception #1

@mbsteixeira

Description

@mbsteixeira

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);

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions