From 11308c4d1f4a8aaab11893810e9809cb76e4e1c6 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Thu, 8 Jun 2023 14:51:18 -0600 Subject: [PATCH] [graph] Remove manual destruction Happens automatically by destructor. --- src/graph/graph.hh | 1 - 1 file changed, 1 deletion(-) diff --git a/src/graph/graph.hh b/src/graph/graph.hh index 0ad4e2ced..53d0bc94e 100644 --- a/src/graph/graph.hh +++ b/src/graph/graph.hh @@ -359,7 +359,6 @@ struct graph_t ~graph_t () { - vertices_.fini (); for (char* b : buffers) hb_free (b); }