From: Diego Devesa Date: Wed, 30 Apr 2025 13:20:40 +0000 (+0200) Subject: ggml : fix ggml_gallocr_ptr type (#1205) X-Git-Tag: upstream/0.0.2015~28 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=7734363ac74a14d7f2c8033c552d9d655c5dfc00;p=pkg%2Fggml%2Fsources%2Fggml ggml : fix ggml_gallocr_ptr type (#1205) --- diff --git a/include/ggml-cpp.h b/include/ggml-cpp.h index a12342c2..48aa7968 100644 --- a/include/ggml-cpp.h +++ b/include/ggml-cpp.h @@ -24,7 +24,7 @@ typedef std::unique_ptr gguf_context_ptr; struct ggml_gallocr_deleter { void operator()(ggml_gallocr_t galloc) { ggml_gallocr_free(galloc); } }; -typedef std::unique_ptr ggml_gallocr_ptr; +typedef std::unique_ptr ggml_gallocr_ptr; // ggml-backend