Make serialization reproducible

This commit is contained in:
momo5502
2024-10-25 19:27:19 +02:00
parent d782c80f3f
commit b1f79a04c2
6 changed files with 15 additions and 16 deletions

View File

@@ -9,7 +9,7 @@ struct exported_symbol
};
using exported_symbols = std::vector<exported_symbol>;
using address_name_mapping = std::unordered_map<uint64_t, std::string>;
using address_name_mapping = std::map<uint64_t, std::string>;
struct mapped_module
{