From 72babea5dea56c8a8e8420ccf731b12a5cf37854 Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Fri, 27 Jun 2025 21:42:02 +0300 Subject: [PATCH] graph : make llm_graph_context destructor virtual (#14410) ggml-ci --- src/llama-graph.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/llama-graph.h b/src/llama-graph.h index 4b1ec354df..ee2197e892 100644 --- a/src/llama-graph.h +++ b/src/llama-graph.h @@ -475,6 +475,7 @@ struct llm_graph_context { std::unique_ptr res; llm_graph_context(const llm_graph_params & params); + virtual ~llm_graph_context() = default; void cb(ggml_tensor * cur, const char * name, int il) const;