Save offset for reusing for any type that has a reusable reference

This commit is contained in:
Jan
2021-03-20 16:04:17 +01:00
parent 5cd5ae5533
commit 1d33cf2adf
4 changed files with 11 additions and 5 deletions

View File

@ -9,6 +9,7 @@ StructureInformation::StructureInformation(DefinitionWithMembers* definition)
m_array_pointer_reference_exists(false),
m_array_reference_exists(false),
m_reference_from_non_default_normal_block_exists(false),
m_reusable_reference_exists(false),
m_post_load_action(nullptr),
m_block(nullptr)
{

View File

@ -24,6 +24,7 @@ public:
bool m_array_pointer_reference_exists;
bool m_array_reference_exists;
bool m_reference_from_non_default_normal_block_exists;
bool m_reusable_reference_exists;
std::unique_ptr<CustomAction> m_post_load_action;
const FastFileBlock* m_block;