From 12c88aa1cdc4e027504c3d27674b003e1120d18f Mon Sep 17 00:00:00 2001 From: Daniel Schlaepfer Date: Fri, 13 Oct 2023 16:10:03 -0400 Subject: [PATCH] Clean up more code associated with DEBUG_MEM* sections - see commit 4e07625047db7f0a2c545ec0d60fe9f057adc18e "Merge pull request #371 from DrylandEcology/feature_remove_debug_mem" see #369 --- include/SW_datastructs.h | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/include/SW_datastructs.h b/include/SW_datastructs.h index b321ef62f..99ec33e26 100644 --- a/include/SW_datastructs.h +++ b/include/SW_datastructs.h @@ -1042,19 +1042,4 @@ typedef struct { #endif } SW_OUTPUT_POINTERS; -/* =================================================== */ -/* Block info struct */ -/* --------------------------------------------------- */ - - /* blockinfo is a structure that contains the memory log information - * for one allocated memory block. Every allocated memory block has - * a corresponding blockinfo structure in the memory log. - */ -typedef struct BLOCKINFO { - struct BLOCKINFO *pbiNext; - byte *pb; /* start of block */ - size_t size; /* length of block */ - flag fReferenced; /* Ever referenced? */ -} blockinfo; /* Naming: bi, *pbi */ - #endif // DATATYPES_H