Fix serialization for MMIO

This commit is contained in:
momo5502
2024-11-18 18:25:50 +01:00
parent 1a23e82f91
commit 2c421df771
2 changed files with 33 additions and 16 deletions

View File

@@ -23,7 +23,6 @@ public:
{
size_t length{};
memory_permission pemissions{};
bool is_mmio{false};
};
using committed_region_map = std::map<uint64_t, committed_region>;
@@ -32,6 +31,7 @@ public:
{
size_t length{};
committed_region_map committed_regions{};
bool is_mmio{false};
};
virtual ~memory_manager() = default;