From: Diego Devesa Date: Wed, 30 Apr 2025 13:20:40 +0000 (+0200) Subject: ggml : fix ggml_gallocr_ptr type (ggml/1205) X-Git-Tag: upstream/0.0.5318~79 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=4254bb49518e0f920f14c9aadd96eefdfd38b429;p=pkg%2Fggml%2Fsources%2Fllama.cpp ggml : fix ggml_gallocr_ptr type (ggml/1205) --- diff --git a/ggml/include/ggml-cpp.h b/ggml/include/ggml-cpp.h index a12342c2..48aa7968 100644 --- a/ggml/include/ggml-cpp.h +++ b/ggml/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