File tree 3 files changed +5
-2
lines changed
3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 4
4
5
5
**Breaking changes **
6
6
7
+ - The ``tables `` argument to ``tsk_treeseq_init `` is no longer ``const ``, to allow for future no-copy tree sequence creation.
8
+ (:user: `benjeffery `, :issue: `1718 `, :pr: `1719 `)
9
+
7
10
**Features **
8
11
9
12
- The default behaviour for table size growth is now to double the current size of the table.
Original file line number Diff line number Diff line change @@ -341,7 +341,7 @@ tsk_treeseq_init_nodes(tsk_treeseq_t *self)
341
341
*/
342
342
int TSK_WARN_UNUSED
343
343
tsk_treeseq_init (
344
- tsk_treeseq_t * self , const tsk_table_collection_t * tables , tsk_flags_t options )
344
+ tsk_treeseq_t * self , tsk_table_collection_t * tables , tsk_flags_t options )
345
345
{
346
346
int ret = 0 ;
347
347
tsk_id_t num_trees ;
Original file line number Diff line number Diff line change @@ -225,7 +225,7 @@ typedef struct {
225
225
@{
226
226
*/
227
227
int tsk_treeseq_init (
228
- tsk_treeseq_t * self , const tsk_table_collection_t * tables , tsk_flags_t options );
228
+ tsk_treeseq_t * self , tsk_table_collection_t * tables , tsk_flags_t options );
229
229
230
230
int tsk_treeseq_load (tsk_treeseq_t * self , const char * filename , tsk_flags_t options );
231
231
int tsk_treeseq_loadf (tsk_treeseq_t * self , FILE * file , tsk_flags_t options );
You can’t perform that action at this time.
0 commit comments