mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-02-07 08:14:39 +01:00
fix g++-14 compilation error
This commit is contained in:
parent
7682e76073
commit
989925b764
|
|
@ -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…
Reference in a new issue