Warning fix: uninitialized attributes

This commit is contained in:
Simon Giraudot 2015-12-18 14:44:17 +01:00
parent 8ab80e7f71
commit fe1ac9e86c
1 changed files with 2 additions and 0 deletions

View File

@ -687,6 +687,8 @@ inline Graph::Graph(void (*err_function)(const char *))
node_block_first = NULL; node_block_first = NULL;
arc_for_block_first = NULL; arc_for_block_first = NULL;
arc_rev_block_first = NULL; arc_rev_block_first = NULL;
orphan_first = NULL;
orphan_last = NULL;
flow = 0; flow = 0;
} }