From 453dbdb0129d871897ed723b5b5910f8c9e2709b Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Fri, 27 Jun 2025 09:41:25 +0300 Subject: [PATCH] graph : make llm_graph_context destructor virtual 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 4b1ec354dfc30..ee2197e892b5a 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;