clean up old transitionary code

This commit is contained in:
Ryan Fleury
2024-02-22 10:03:26 -08:00
parent d2adf3e067
commit b508489416
+4 -49
View File
@@ -795,6 +795,8 @@ struct RDIM_ScopeChunkList
////////////////////////////////
//~ rjf: Baking Types
//- rjf: baking parameters
typedef struct RDIM_BakeParams RDIM_BakeParams;
struct RDIM_BakeParams
{
@@ -810,6 +812,8 @@ struct RDIM_BakeParams
RDIM_ScopeChunkList scopes;
};
//- rjf: data sections
typedef struct RDIM_BakeSection RDIM_BakeSection;
struct RDIM_BakeSection
{
@@ -834,55 +838,6 @@ struct RDIM_BakeSectionList
RDI_U64 count;
};
////////////////////////////////
//~ rjf: [OLD] Baking Types
//- rjf: bake parameters
#if 0
typedef struct RDIM_BakeParams RDIM_BakeParams;
struct RDIM_BakeParams
{
RDIM_TopLevelInfo top_level_info;
RDIM_BinarySectionList binary_sections;
RDIM_UnitChunkList units;
RDIM_TypeChunkList types;
RDIM_UDTChunkList udts;
RDIM_SrcFileChunkList src_files;
RDIM_SymbolChunkList global_variables;
RDIM_SymbolChunkList thread_variables;
RDIM_SymbolChunkList procedures;
RDIM_ScopeChunkList scopes;
};
#endif
//- rjf: data sections
#if 0
typedef struct RDIM_BakeSection RDIM_BakeSection;
struct RDIM_BakeSection
{
void *data;
RDI_U64 size;
RDI_DataSectionTag tag;
};
typedef struct RDIM_BakeSectionNode RDIM_BakeSectionNode;
struct RDIM_BakeSectionNode
{
RDIM_BakeSectionNode *next;
RDIM_BakeSection v;
};
typedef struct RDIM_BakeSectionList RDIM_BakeSectionList;
struct RDIM_BakeSectionList
{
RDIM_BakeSectionNode *first;
RDIM_BakeSectionNode *last;
RDI_U64 count;
};
#endif
//- rjf: interned strings
typedef struct RDIM_BakeStringNode RDIM_BakeStringNode;