mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-04-03 05:57:40 -05:00
fix: Compile error due to un-unpacked expected value
This commit is contained in:
@@ -206,7 +206,7 @@ namespace hex::plugin::builtin {
|
||||
}
|
||||
|
||||
u64 maxAddress = 0x00;
|
||||
for (auto &[address, bytes] : data) {
|
||||
for (auto &[address, bytes] : data.value()) {
|
||||
auto endAddress = (address + bytes.size()) - 1;
|
||||
m_data.emplace({ address, endAddress }, std::move(bytes));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user