mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-20 13:55:21 +00:00
fix g++-14 compilation error
This commit is contained in:
parent
7682e76073
commit
989925b764
1 changed files with 2 additions and 1 deletions
|
|
@ -74,7 +74,8 @@ struct DirectMemoryAllocation {
|
|||
merge(const DirectMemoryAllocation &other, rx::AddressRange,
|
||||
rx::AddressRange) const {
|
||||
auto result = *this;
|
||||
result.mappings.insert_range(result.mappings.end(), other.mappings);
|
||||
result.mappings.insert(result.mappings.end(), other.mappings.begin(),
|
||||
other.mappings.end());
|
||||
return result;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue