[repacker] Replace fini_deep() with fini()

Vector calls destructor now.
This commit is contained in:
Behdad Esfahbod 2022-01-17 15:53:01 -07:00
parent 1198fb2468
commit 15cceff3d7
1 changed files with 3 additions and 3 deletions

View File

@ -186,7 +186,7 @@ struct graph_t
~graph_t () ~graph_t ()
{ {
vertices_.fini_deep (); vertices_.fini ();
} }
bool in_error () const bool in_error () const
@ -309,7 +309,7 @@ struct graph_t
remap_all_obj_indices (id_map, &sorted_graph); remap_all_obj_indices (id_map, &sorted_graph);
hb_swap (vertices_, sorted_graph); hb_swap (vertices_, sorted_graph);
sorted_graph.fini_deep (); sorted_graph.fini ();
} }
/* /*
@ -369,7 +369,7 @@ struct graph_t
remap_all_obj_indices (id_map, &sorted_graph); remap_all_obj_indices (id_map, &sorted_graph);
hb_swap (vertices_, sorted_graph); hb_swap (vertices_, sorted_graph);
sorted_graph.fini_deep (); sorted_graph.fini ();
} }
/* /*