From c8fe3fe280409787c3cd428def2fd6325ad89a3b Mon Sep 17 00:00:00 2001 From: seleznevae Date: Tue, 1 May 2018 20:03:13 +0300 Subject: [PATCH] [D] Removed options from cells --- src/cell.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/cell.c b/src/cell.c index 41db71a..90fb313 100644 --- a/src/cell.c +++ b/src/cell.c @@ -9,7 +9,6 @@ struct fort_cell { string_buffer_t *str_buffer; - fort_table_options_t *options; }; fort_cell_t *create_cell(void) @@ -22,7 +21,6 @@ fort_cell_t *create_cell(void) F_FREE(cell); return NULL; } - cell->options = NULL; /*init_cell_options(&(cell->options));*/ return cell; } @@ -32,7 +30,6 @@ void destroy_cell(fort_cell_t *cell) if (cell == NULL) return; destroy_string_buffer(cell->str_buffer); - F_FREE(cell->options); F_FREE(cell); }