mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 12:15:45 +00:00
Fixed invalid iterator usage
This commit is contained in:
parent
aee79cc758
commit
a24aa6e5bd
1 changed files with 1 additions and 1 deletions
|
@ -314,8 +314,8 @@ private:
|
||||||
}
|
}
|
||||||
|
|
||||||
void UntrackPlaceholder(boost::icl::separate_interval_set<size_t>::iterator it) {
|
void UntrackPlaceholder(boost::icl::separate_interval_set<size_t>::iterator it) {
|
||||||
placeholders.erase(it);
|
|
||||||
placeholder_host_pointers.erase(it->lower());
|
placeholder_host_pointers.erase(it->lower());
|
||||||
|
placeholders.erase(it);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Return true when a given memory region is a "nieche" and the placeholders don't have to be
|
/// Return true when a given memory region is a "nieche" and the placeholders don't have to be
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue