1
0
Fork 0

[D] Removed options from cells

This commit is contained in:
seleznevae 2018-05-01 20:03:13 +03:00
parent 8c7e2b947d
commit c8fe3fe280
1 changed files with 0 additions and 3 deletions

View File

@ -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);
}