diff options
| author | Alexander Taylor <alex@vector35.com> | 2025-05-27 13:47:26 -0400 |
|---|---|---|
| committer | Alexander Taylor <alex@vector35.com> | 2025-06-25 18:36:48 -0400 |
| commit | 0838242066437a04e3aa3417cab703cc071adde6 (patch) | |
| tree | 281a5f496855aa4f7e3f342153c4f45c93c3d1cd /view/sharedcache/core/VirtualMemory.cpp | |
| parent | 0db1435ce97fcc62a1676a819ac33e80dd3a010a (diff) | |
Fix cxx20 compiler errors.
Diffstat (limited to 'view/sharedcache/core/VirtualMemory.cpp')
| -rw-r--r-- | view/sharedcache/core/VirtualMemory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/sharedcache/core/VirtualMemory.cpp b/view/sharedcache/core/VirtualMemory.cpp index 47206467..dc52bf0f 100644 --- a/view/sharedcache/core/VirtualMemory.cpp +++ b/view/sharedcache/core/VirtualMemory.cpp @@ -3,7 +3,7 @@ void VirtualMemory::MapRegion(WeakFileAccessor fileAccessor, AddressRange mappedRange, uint64_t fileOffset) { // Create a new VirtualMemoryRegion object - VirtualMemoryRegion region {fileOffset, std::move(fileAccessor)}; + VirtualMemoryRegion region(fileOffset, std::move(fileAccessor)); // TODO: How to handle overlapping regions? for (const auto& [existingRange, existingRegion] : m_regions) |
